Skip to content

Commit

Permalink
Merge pull request #352 from wjrforcyber/conditional_jump
Browse files Browse the repository at this point in the history
Fix(&if -x): Conditional jump or move depends on uninitialised value(s)
  • Loading branch information
alanminko authored Dec 23, 2024
2 parents 01c6102 + fdd66a8 commit 943bc01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/opt/dau/dauMerge.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ void Dau_DsdRemoveBraces( char * pDsd, int * pMatches )
for ( q = p; *p; p++ )
if ( *p != ' ' )
{
if ( *p == '!' && *(q-1) == '!' && p != q )
if ( *p == '!' && p != q && *(q-1) == '!' )
{
q--;
continue;
Expand Down

0 comments on commit 943bc01

Please sign in to comment.