| 9822 | } |
| 9823 | |
| 9824 | static xmlSchemaSchemaRelationPtr |
| 9825 | xmlSchemaSchemaRelationCreate(void) |
| 9826 | { |
| 9827 | xmlSchemaSchemaRelationPtr ret; |
| 9828 | |
| 9829 | ret = (xmlSchemaSchemaRelationPtr) |
| 9830 | xmlMalloc(sizeof(xmlSchemaSchemaRelation)); |
| 9831 | if (ret == NULL) { |
| 9832 | xmlSchemaPErrMemory(NULL); |
| 9833 | return(NULL); |
| 9834 | } |
| 9835 | memset(ret, 0, sizeof(xmlSchemaSchemaRelation)); |
| 9836 | return(ret); |
| 9837 | } |
| 9838 | |
| 9839 | #if 0 |
| 9840 | static void |
no test coverage detected