kernel32: Fix MoveFileWithProgressW from closing same handle twice.

Signed-off-by: Jon Doron <arilou@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Jon Doron 2019-01-11 10:24:44 +02:00 committed by Alexandre Julliard
parent b90bbcbe75
commit 69d3c7a00f
1 changed files with 1 additions and 0 deletions

View File

@ -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)
{