Changeset 1782 for trunk/dll/pathutil.c
- Timestamp:
- Jun 28, 2014, 11:34:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/pathutil.c
r1761 r1782 22 22 So calls to these functions had to be changed. 23 23 21 Mar 14 SHL Add IsAbsolutePath 24 28 Jun 14 GKY Fix errors identified with CPPCheck; 24 25 25 26 ***********************************************************************/ … … 263 264 } 264 265 // if it doesn't have an extension try it with all the standard ones and add if found 265 else if ( szCmdLine && (!strchr(szCmdLine, '.') ||266 strrchr(szCmdLine, '.' ) < strrchr(szCmdLine, '\\'))) {266 else if (!strchr(szCmdLine, '.') || 267 strrchr(szCmdLine, '.' ) < strrchr(szCmdLine, '\\')) { 267 268 if (!strchr(szCmdLine, ' ')) { 268 269 // strip quotes readded by BuildQuotedFileName
Note:
See TracChangeset
for help on using the changeset viewer.