8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e65deb7 commit f897c66Copy full SHA for f897c66
ext/url/php_url.c
@@ -386,6 +386,9 @@ PHP_MSHUTDOWN_FUNCTION(url)
386
387
PHP_RINIT_FUNCTION(url)
388
{
389
+#if defined(COMPILE_DL_URL) && defined(ZTS)
390
+ ZEND_TSRMLS_CACHE_UPDATE();
391
+#endif
392
URL_G(parser) = init_parser();
393
URL_G(urls) = 0;
394
@@ -411,3 +414,10 @@ zend_module_entry url_module_entry = {
411
414
PHP_VERSION, /* Version */
412
415
STANDARD_MODULE_PROPERTIES
413
416
};
417
+
418
+#ifdef COMPILE_DL_URL
419
+#ifdef ZTS
420
+ZEND_TSRMLS_CACHE_DEFINE()
421
422
+ZEND_GET_MODULE(url)
423
0 commit comments