mirror of
https://github.com/reactos/wine.git
synced 2025-04-04 09:01:57 +00:00
winebuild: Avoid a superflous null check (Coverity).
This commit is contained in:
parent
034c2cb3fd
commit
0806f9a438
@ -626,6 +626,7 @@ void output_res_o_file( DLLSPEC *spec )
|
|||||||
unsigned int i;
|
unsigned int i;
|
||||||
char *res_file = NULL;
|
char *res_file = NULL;
|
||||||
int fd;
|
int fd;
|
||||||
|
struct strarray *args;
|
||||||
|
|
||||||
if (!spec->nb_resources) fatal_error( "--resources mode needs at least one resource file as input\n" );
|
if (!spec->nb_resources) fatal_error( "--resources mode needs at least one resource file as input\n" );
|
||||||
if (!output_file_name) fatal_error( "No output file name specified\n" );
|
if (!output_file_name) fatal_error( "No output file name specified\n" );
|
||||||
@ -681,12 +682,10 @@ void output_res_o_file( DLLSPEC *spec )
|
|||||||
close( fd );
|
close( fd );
|
||||||
free( output_buffer );
|
free( output_buffer );
|
||||||
|
|
||||||
if (res_file)
|
args = strarray_init();
|
||||||
{
|
strarray_add( args, find_tool( "windres", NULL ), "-i", res_file, "-o", output_file_name, NULL );
|
||||||
struct strarray *args = strarray_init();
|
spawn( args );
|
||||||
strarray_add( args, find_tool( "windres", NULL ), "-i", res_file, "-o", output_file_name, NULL );
|
strarray_free( args );
|
||||||
spawn( args );
|
|
||||||
strarray_free( args );
|
|
||||||
}
|
|
||||||
output_file_name = NULL; /* so we don't try to assemble it */
|
output_file_name = NULL; /* so we don't try to assemble it */
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user