uh oh, typo bug in freeall()
This commit is contained in:
parent
72fc455978
commit
01c1734e42
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue