Changeset 1471 for trunk/contrib/applications/NXextract/src/file.cpp
- Timestamp:
- 09/05/10 13:37:48 (2 years ago)
- File:
-
- 1 edited
-
trunk/contrib/applications/NXextract/src/file.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/applications/NXextract/src/file.cpp
r1446 r1471 518 518 return; 519 519 520 c har *p;520 const char *p; 521 521 #ifdef __WIN32__ 522 522 // Skeep UNC starting if it exists … … 575 575 do 576 576 { 577 *p = 0;577 str[p - PSZ(str)] = '\0'; // *p = 0; 578 578 struct stat st; 579 579 if( ::stat(PSZ(str), &st) ) … … 634 634 } 635 635 // Next path component 636 *p = SEP_PATH;636 str[p - PSZ(str)] = SEP_PATH; // *p = SEP_PATH; 637 637 p = strchr(p+1, SEP_PATH); 638 638 } while( p );
Note: See TracChangeset
for help on using the changeset viewer.
