shell32: Don't assign a result from a function that returns a BOOL to an HRESULT in shellex_get_dataobj.

Otherwise there could be confusion as to what type GetFullPathNameW is
returning.
This commit is contained in:
Rob Shearman 2008-08-17 18:32:26 +01:00 committed by Alexandre Julliard
parent 5dd6d798a4
commit 3261814e08
1 changed files with 3 additions and 2 deletions

View File

@ -1091,10 +1091,11 @@ static IDataObject *shellex_get_dataobj( LPSHELLEXECUTEINFOW sei )
else
{
WCHAR fullpath[MAX_PATH];
BOOL ret;
fullpath[0] = 0;
r = GetFullPathNameW( sei->lpFile, MAX_PATH, fullpath, NULL );
if (!r)
ret = GetFullPathNameW( sei->lpFile, MAX_PATH, fullpath, NULL );
if (!ret)
goto end;
pidl = ILCreateFromPathW( fullpath );