Changeset 64739 in vbox
- Timestamp:
- Nov 23, 2016 3:14:22 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112065
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/nt/RTNtPathExpand8dot3Path.cpp
r64738 r64739 89 89 puBuf = (union fix8dot3tmp *)RTMemAlloc(sizeof(*puBuf)); 90 90 if (!puBuf) 91 { 92 rc = -VERR_NO_MEMORY; 91 93 break; 94 } 92 95 } 93 96 … … 175 178 NtClose(hDir); 176 179 } 180 else 181 rc = -RTErrConvertFromNtStatus(rcNt); 177 182 178 183 /* Advance */ -
trunk/src/VBox/Runtime/testcase/tstRTNtPath-1.cpp
r60481 r64739 199 199 200 200 tstTraverse8dot3(&This, cch, cch, 0); 201 202 201 RTTestIPrintf(RTTESTLVL_ALWAYS, "info: cEntries=%u cHits=%u cFirstClassHits=%u\n", 202 This.cEntries, This.cHits, This.cFirstClassHits); 203 203 } 204 204 else
Note:
See TracChangeset
for help on using the changeset viewer.