Home
last modified time | relevance | path

Searched refs:notationListHead (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/expat/xmlwf/
H A Dxmlwf.c86 NotationList *notationListHead; member
335 NotationList *notationListHead = data->notationListHead; in freeNotations() local
337 while (notationListHead != NULL) { in freeNotations()
338 NotationList *next = notationListHead->next; in freeNotations()
339 free((void *)notationListHead->notationName); in freeNotations()
340 free((void *)notationListHead->systemId); in freeNotations()
341 free((void *)notationListHead->publicId); in freeNotations()
342 free(notationListHead); in freeNotations()
343 notationListHead = next; in freeNotations()
345 data->notationListHead = NULL; in freeNotations()
[all …]