hash: Fix possible startup crash with old libxslt versions

Call xmlInitParser in xmlHashCreate to make it work if the library
wasn't initialized yet.

Otherwise, exsltRegisterAll from libxslt 1.1.24 or older might cause
a crash.

See #534.
This commit is contained in:
Nick Wellnhofer 2023-05-06 15:28:13 +02:00
parent 9c1f5fe7fb
commit e6a9cc8d66

2
hash.c
View File

@ -180,6 +180,8 @@ xmlHashTablePtr
xmlHashCreate(int size) {
xmlHashTablePtr table;
xmlInitParser();
if (size <= 0)
size = 256;