| 5001 | */ |
| 5002 | |
| 5003 | htmlParserCtxtPtr |
| 5004 | htmlNewSAXParserCtxt(const htmlSAXHandler *sax, void *userData) |
| 5005 | { |
| 5006 | xmlParserCtxtPtr ctxt; |
| 5007 | |
| 5008 | xmlInitParser(); |
| 5009 | |
| 5010 | ctxt = (xmlParserCtxtPtr) xmlMalloc(sizeof(xmlParserCtxt)); |
| 5011 | if (ctxt == NULL) |
| 5012 | return(NULL); |
| 5013 | memset(ctxt, 0, sizeof(xmlParserCtxt)); |
| 5014 | if (htmlInitParserCtxt(ctxt, sax, userData) < 0) { |
| 5015 | htmlFreeParserCtxt(ctxt); |
| 5016 | return(NULL); |
| 5017 | } |
| 5018 | return(ctxt); |
| 5019 | } |
| 5020 | |
| 5021 | static htmlParserCtxtPtr |
| 5022 | htmlCreateMemoryParserCtxtInternal(const char *url, |