| 7985 | } |
| 7986 | |
| 7987 | static void FASTCALL |
| 7988 | poolDestroy(STRING_POOL *pool) { |
| 7989 | BLOCK *p = pool->blocks; |
| 7990 | while (p) { |
| 7991 | BLOCK *tem = p->next; |
| 7992 | FREE(pool->parser, p); |
| 7993 | p = tem; |
| 7994 | } |
| 7995 | p = pool->freeBlocks; |
| 7996 | while (p) { |
| 7997 | BLOCK *tem = p->next; |
| 7998 | FREE(pool->parser, p); |
| 7999 | p = tem; |
| 8000 | } |
| 8001 | } |
| 8002 | |
| 8003 | static XML_Char * |
| 8004 | poolAppend(STRING_POOL *pool, const ENCODING *enc, const char *ptr, |
no outgoing calls
no test coverage detected
searching dependent graphs…