|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch temp_dir_ts_4 for Apache2 related Bug #70002Patch version 2015-07-28 14:40 UTC Return to Bug #70002 | Download this patchThis patch renders other patches obsolete Obsolete patches:
Developer: ab@php.net
diff --git a/main/php_open_temporary_file.c b/main/php_open_temporary_file.c
index 2600246..7fe28cf 100644
--- a/main/php_open_temporary_file.c
+++ b/main/php_open_temporary_file.c
@@ -176,7 +176,15 @@ static int php_do_open_temporary_file(const char *path, const char *pfx, char **
/* }}} */
/* Cache the chosen temporary directory. */
-static char* temporary_directory;
+static
+#ifdef ZTS
+#ifdef PHP_WIN32
+__declspec(thread)
+#elif defined(__GNUC__)
+__thread
+#endif
+#endif
+char* temporary_directory;
PHPAPI void php_shutdown_temporary_directory(void)
{
|
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 00:00:02 2025 UTC |