| 3399 | } |
| 3400 | |
| 3401 | static xmlSchemaItemListPtr |
| 3402 | xmlSchemaItemListCreate(void) |
| 3403 | { |
| 3404 | xmlSchemaItemListPtr ret; |
| 3405 | |
| 3406 | ret = xmlMalloc(sizeof(xmlSchemaItemList)); |
| 3407 | if (ret == NULL) { |
| 3408 | xmlSchemaPErrMemory(NULL); |
| 3409 | return (NULL); |
| 3410 | } |
| 3411 | memset(ret, 0, sizeof(xmlSchemaItemList)); |
| 3412 | return (ret); |
| 3413 | } |
| 3414 | |
| 3415 | static void |
| 3416 | xmlSchemaItemListClear(xmlSchemaItemListPtr list) |
no test coverage detected