Changeset 40934 in vbox for trunk/src/VBox/Runtime/common/path/RTPathStripExt.cpp
- Timestamp:
- Apr 16, 2012 5:53:05 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathStripExt.cpp
r28800 r40934 42 42 RTDECL(void) RTPathStripExt(char *pszPath) 43 43 { 44 char *pszDot = NULL;44 char *pszDot = (char *)NULL; 45 45 for (;; pszPath++) 46 46 { … … 53 53 #endif 54 54 case '/': 55 pszDot = NULL;55 pszDot = (char *)NULL; 56 56 break; 57 57 case '.':
Note:
See TracChangeset
for help on using the changeset viewer.