mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-01 17:38:43 +01:00
Fix another error reported by Wipro, deref of possibly NULL pointer.
This commit is contained in:
@@ -241,7 +241,8 @@ void falloc_gc()
|
|||||||
cp = NULL;
|
cp = NULL;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
lp->qnext = np;
|
if (lp)
|
||||||
|
lp->qnext = np;
|
||||||
cp = lp;
|
cp = lp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user