Update to latest git snapshot.
- Add -use-after-free, -null-fprintf, and -weaken-assert patches. - Minor spec file cleanups.
This commit is contained in:
parent
788a145c2e
commit
0eca8cf4f2
5 changed files with 71 additions and 12 deletions
11
abc-null-fprintf.patch
Normal file
11
abc-null-fprintf.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- src/base/exor/exorUtil.c.orig 2022-10-19 06:05:56.000000000 -0600
|
||||
+++ src/base/exor/exorUtil.c 2022-11-16 11:40:26.252322689 -0700
|
||||
@@ -189,7 +189,7 @@ int WriteResultIntoFile( char * pFileNam
|
||||
pFile = fopen( pFileName, "w" );
|
||||
if ( pFile == NULL )
|
||||
{
|
||||
- fprintf( pFile, "\n\nCannot open the output file\n" );
|
||||
+ fprintf( stderr, "\n\nCannot open the output file\n" );
|
||||
return 1;
|
||||
}
|
||||
|
||||
Reference in a new issue