Commit a5a049da authored by Misha Koshelev's avatar Misha Koshelev Committed by Alexandre Julliard

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

parent bafc4dc3
...@@ -993,13 +993,10 @@ cleanup: ...@@ -993,13 +993,10 @@ cleanup:
HeapFree( GetProcessHeap(), 0, escaped_path ); HeapFree( GetProcessHeap(), 0, escaped_path );
HeapFree( GetProcessHeap(), 0, escaped_description ); HeapFree( GetProcessHeap(), 0, escaped_description );
if (r) if (r && !bWait)
{
WINE_ERR("failed to fork and exec wineshelllink\n" ); WINE_ERR("failed to fork and exec wineshelllink\n" );
return FALSE;
}
return TRUE; return ( r == 0 );
} }
static BOOL WaitForParentProcess( void ) static BOOL WaitForParentProcess( void )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment