Skip to content

Commit f04a1ec

Browse files
committed
Catch another false-valid-free case
1 parent 2c71799 commit f04a1ec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tool-wrapper.inc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ parse_result()
4343
elif tail -n 50 $LOG.ok | \
4444
grep -Eq "^(\[.*\] free argument has offset zero|[[:space:]]* free argument has offset zero$)" ; then
4545
echo 'FALSE(valid-free)'
46+
elif tail -n 50 $LOG.ok | \
47+
grep -Eq "^(\[.*\] |[[:space:]]*)free argument is dynamic object" ; then
48+
echo 'FALSE(valid-free)'
4649
elif tail -n 50 $LOG.ok | \
4750
grep -Eq "^(\[.*\] |[[:space:]]*)arithmetic overflow on signed" ; then
4851
echo 'FALSE(no-overflow)'

0 commit comments

Comments
 (0)