Changeset 52834 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Sep 24, 2014 12:46:44 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPR3HardenedMain-win.cpp
r52795 r52834 513 513 if (wcLeft != wcRight) 514 514 { 515 wcLeft = wcLeft != '/' ? RT_C_TO_LOWER(wcLeft) : '\\';516 wc Left = wcRight != '/' ? RT_C_TO_LOWER(wcRight) : '\\';515 wcLeft = wcLeft != '/' ? RT_C_TO_LOWER(wcLeft) : '\\'; 516 wcRight = wcRight != '/' ? RT_C_TO_LOWER(wcRight) : '\\'; 517 517 if (wcLeft != wcRight) 518 518 return false; … … 1116 1116 RTUTF16 wc; 1117 1117 PRTUTF16 pwszFixEnd = pwszFix; 1118 while ((wc = *pwszFixEnd) != '\0' && wc != '\\' && wc != '/ /')1118 while ((wc = *pwszFixEnd) != '\0' && wc != '\\' && wc != '/') 1119 1119 pwszFixEnd++; 1120 1120 if (wc == '\0')
Note:
See TracChangeset
for help on using the changeset viewer.