Bug fix from Zheng Yuan <zyuan1@cig.mot.com>.

This commit is contained in:
Martin Mares 2001-01-17 08:32:28 +00:00
parent a2d01907c5
commit 0766e962e9

View file

@ -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