1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

fixed thread problem

This commit is contained in:
William M. Brack
2002-11-22 05:07:29 +00:00
parent d5c2f92df4
commit 8b2c7f10f1
4 changed files with 14 additions and 12 deletions

View File

@ -315,7 +315,7 @@ xmlNewGlobalState(void)
if (gs == NULL)
return(NULL);
memset(gs, 0, sizeof(gs));
memset(gs, 0, sizeof(xmlGlobalState));
xmlInitializeGlobalState(gs);
return (gs);
}