Commit 69d3c7a0 authored by Jon Doron's avatar Jon Doron Committed by Alexandre Julliard

kernel32: Fix MoveFileWithProgressW from closing same handle twice.

parent b90bbcbe
......@@ -1392,6 +1392,7 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, LPCWSTR dest,
}
NtClose( dest_handle );
dest_handle = NULL;
}
else if (status != STATUS_OBJECT_NAME_NOT_FOUND)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment