| 3761 | } |
| 3762 | |
| 3763 | static int |
| 3764 | xmlSchemaAddItemSize(xmlSchemaItemListPtr *list, int initialSize, void *item) |
| 3765 | { |
| 3766 | if (*list == NULL) { |
| 3767 | *list = xmlSchemaItemListCreate(); |
| 3768 | if (*list == NULL) |
| 3769 | return(-1); |
| 3770 | } |
| 3771 | return(xmlSchemaItemListAddSize(*list, initialSize, item)); |
| 3772 | } |
| 3773 | |
| 3774 | /** |
| 3775 | * xmlSchemaFreeAnnot: |
nothing calls this directly
no test coverage detected