Fix compiler warning in htmlParseElementInternal
diff --git a/HTMLparser.c b/HTMLparser.c
index 3198afa..367e304 100644
--- a/HTMLparser.c
+++ b/HTMLparser.c
@@ -4448,7 +4448,7 @@
 htmlParseElementInternal(htmlParserCtxtPtr ctxt) {
     const xmlChar *name;
     const htmlElemDesc * info;
-    htmlParserNodeInfo node_info = { 0, };
+    htmlParserNodeInfo node_info = { NULL, 0, 0, 0, 0 };
     int failed;
 
     if ((ctxt == NULL) || (ctxt->input == NULL)) {