My Alpine packages repository.
https://dryabzhinsky.noip.me/packages/en/alpinelinux-support/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
659 B
17 lines
659 B
diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c |
|
index 9bd8bfd..747f5a4 100644 |
|
--- a/ext/libxml/libxml.c |
|
+++ b/ext/libxml/libxml.c |
|
@@ -851,6 +851,12 @@ static PHP_RINIT_FUNCTION(libxml) |
|
xmlSetGenericErrorFunc(NULL, php_libxml_error_handler); |
|
xmlParserInputBufferCreateFilenameDefault(php_libxml_input_buffer_create_filename); |
|
xmlOutputBufferCreateFilenameDefault(php_libxml_output_buffer_create_filename); |
|
+ |
|
+ /* Enable the entity loader by default. This ensure that |
|
+ * other threads/requests that might have disable the loader |
|
+ * do not affect the current request. |
|
+ */ |
|
+ LIBXML(entity_loader_disabled) = 0; |
|
} |
|
return SUCCESS; |
|
}
|
|
|