mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
uh oh, typo bug in freeall()
This commit is contained in:
parent
72fc455978
commit
01c1734e42
@ -68,7 +68,7 @@ freeall()
|
||||
void **pp;
|
||||
|
||||
for (;;) {
|
||||
for (pp = &pool[1]; pp < &pool[NPtr]; pp++)
|
||||
for (pp = &pool[1]; pp < &pool[nptr]; pp++)
|
||||
free(*pp);
|
||||
pp = pool[0];
|
||||
if (!pp)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user