Due to a misplaced "}" memory wasn't freed on the error path.

This commit is contained in:
Michael Stefaniuc 2003-09-27 02:25:40 +00:00 committed by Alexandre Julliard
parent 81a7aade60
commit 1cd884eb5c
1 changed files with 2 additions and 2 deletions

View File

@ -1036,9 +1036,9 @@ BOOL static do_file_copyW( LPCWSTR source, LPCWSTR target, DWORD style)
docopy = FALSE;
}
}
HeapFree(GetProcessHeap(),0,VersionSource);
HeapFree(GetProcessHeap(),0,VersionTarget);
}
HeapFree(GetProcessHeap(),0,VersionSource);
HeapFree(GetProcessHeap(),0,VersionTarget);
}
}
if (style & (SP_COPY_NOOVERWRITE | SP_COPY_FORCE_NOOVERWRITE))