winemenubuilder: Do not WINE_ERR in InvokeShellLinker if we are going to try again.

This commit is contained in:
Misha Koshelev 2007-06-28 19:47:59 -05:00 committed by Alexandre Julliard
parent bafc4dc385
commit a5a049da5a
1 changed files with 2 additions and 5 deletions

View File

@ -993,13 +993,10 @@ cleanup:
HeapFree( GetProcessHeap(), 0, escaped_path );
HeapFree( GetProcessHeap(), 0, escaped_description );
if (r)
{
if (r && !bWait)
WINE_ERR("failed to fork and exec wineshelllink\n" );
return FALSE;
}
return TRUE;
return ( r == 0 );
}
static BOOL WaitForParentProcess( void )