From 06f76236d1a9ee2f9136b0088cd0ba883437f5f9 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Thu, 13 Jan 2011 19:56:12 +0100 Subject: [PATCH] libwine: Fall back to normal exec if the preloader doesn't exist. --- libs/wine/config.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/wine/config.c b/libs/wine/config.c index 4a2bcedaa63..fdd47003644 100644 --- a/libs/wine/config.c +++ b/libs/wine/config.c @@ -482,7 +482,6 @@ static void preloader_exec( char **argv, int use_preloader ) execv( full_name, new_argv ); free( new_argv ); free( full_name ); - return; } #endif execv( argv[0], argv );