1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-11 09:31:13 +02:00

Fix another error reported by Wipro, deref of possibly NULL pointer.

This commit is contained in:
v.audacity 2010-09-14 23:02:19 +00:00
parent a18981a79a
commit fb3e2dab1b

View File

@ -241,7 +241,8 @@ void falloc_gc()
cp = NULL;
}
else {
lp->qnext = np;
if (lp)
lp->qnext = np;
cp = lp;
}
}