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