Changeset 202


Ignore:
Timestamp:
04/02/14 16:16:19 (10 years ago)
Author:
Maciej Komosinski
Message:

Absolute/relative had a reversed condition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/nonstd_stdio.cpp

    r201 r202  
    3232        if (fname == NULL) return false; //SplitFileSystem never passes NULL but this function is public so we never know
    3333#if defined _WIN32 && !defined SHP
    34         return PathIsRelative(Util::strTOwstr(fname).c_str()) == TRUE; //http://msdn.microsoft.com/en-us/library/bb773660%28v=vs.85%29.aspx
     34        return PathIsRelative(Util::strTOwstr(fname).c_str()) == FALSE; //http://msdn.microsoft.com/en-us/library/bb773660%28v=vs.85%29.aspx
    3535#else
    3636        return fname[0] == PATH_SEPARATOR_CHAR;
Note: See TracChangeset for help on using the changeset viewer.