Changeset 84484 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 25, 2020 8:45:14 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/os2/VBoxSF/VBoxSFFind.cpp
r79710 r84484 80 80 if (wc == '.') 81 81 return false; 82 if (off > =offMax)82 if (off > offMax) 83 83 return false; 84 84 } … … 92 92 93 93 /* 94 * Conver to the native code page.94 * Convert to the native code page. 95 95 */ 96 96 APIRET rc = SafeKernStrFromUcs(NULL, pszTmp, pwszName, cbTmp, cwcName); … … 120 120 if (ch == '\0') 121 121 return true; 122 if (ch != '.')122 if (ch == '.') 123 123 return false; 124 124 if (cch >= 3)
Note:
See TracChangeset
for help on using the changeset viewer.