php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | |
Patch temp_dir_ts_3 for Apache2 related Bug #70002Patch version 2015-07-28 08:51 UTC Return to Bug #70002 | Download this patchThis patch is obsolete Obsoleted by patches: This patch renders other patches obsolete Obsolete patches: Patch Revisions:Developer: ab@php.netdiff --git a/main/php_open_temporary_file.c b/main/php_open_temporary_file.c index 2600246..5f13902 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) +#else +__thread +#endif +#endif +char* temporary_directory; PHPAPI void php_shutdown_temporary_directory(void) { |
Copyright © 2001-2024 The PHP Group All rights reserved. |
Last updated: Thu Nov 21 12:01:29 2024 UTC |