Bug fix from Zheng Yuan <zyuan1@cig.mot.com>.
This commit is contained in:
parent
a2d01907c5
commit
0766e962e9
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ lp_alloc(linpool *m, unsigned size)
|
|||
c = xmalloc(sizeof(struct lp_chunk) + size);
|
||||
m->total_large += size;
|
||||
c->next = m->first_large;
|
||||
m->first_large = c->next;
|
||||
m->first_large = c;
|
||||
c->size = size;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue