Changeset 106572 in vbox for trunk/src/VBox/Runtime/r3/nt/RTFileDelete-r3-nt.cpp
- Timestamp:
- Oct 21, 2024 5:03:01 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/nt/RTFileDelete-r3-nt.cpp
r104285 r106572 171 171 if (NT_SUCCESS(rcNt)) 172 172 { 173 NTSTATUS rcNt2; 174 173 175 /* 174 176 * Recheck that this is a file and not a directory or a reparse point we … … 202 204 rc = RTErrConvertFromNtStatus(rcNt); 203 205 204 rcNt = NtClose(hPath); 206 rcNt2 = NtClose(hPath); 207 if (NT_SUCCESS(rcNt)) 208 rcNt = rcNt2; 209 205 210 if (!NT_SUCCESS(rcNt) && RT_SUCCESS_NP(rc)) 206 211 rc = RTErrConvertFromNtStatus(rcNt);
Note:
See TracChangeset
for help on using the changeset viewer.