André Hentschel <n...@dawncrow.de> writes:

> diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c
> index 2b69e8c..d34b3a7 100644
> --- a/dlls/kernel32/path.c
> +++ b/dlls/kernel32/path.c
> @@ -1031,6 +1031,9 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, 
> LPCWSTR dest,
>      if (flag & MOVEFILE_WRITE_THROUGH)
>          FIXME("MOVEFILE_WRITE_THROUGH unimplemented\n");
>  
> +    if (!strcmpiW( source, dest ))
> +        return TRUE; /* we are done */
> +

There's a lot more to this than simply comparing the specified paths.

-- 
Alexandre Julliard
julli...@winehq.org


Reply via email to