Andrey A. Chernov 323d07b497 Just by allocating size*2 bytes we can't be sure that new size will be enough,
so change two
	if (size not enough) {
		reallocf(size*2);
	}
into
	while (size not enough) {
		reallocf(size*2);
	}
2005-09-18 17:50:58 +00:00
..
2005-04-23 18:45:36 +00:00
2005-07-23 21:30:35 +00:00
2005-09-11 20:59:52 +00:00