![]() |
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch kill-tmpnam-usage.patch for phpdbg Bug #66591Patch version 2014-01-28 11:37 UTC Return to Bug #66591 | Download this patchThis patch renders other patches obsolete Obsolete patches: Patch Revisions: 2014-01-28 11:37 UTC | 2014-01-28 11:19 UTCDeveloper: ondrej@php.netphpdbg_error("Unable to create temporary file"); } +#ifndef HAVE_MKSTEMP + { + char *ptr = mktemp(buf); + char *ptr = mktemp(bp_tmp_file); + tfd = open(ptr, O_RDWR|O_TRUNC|O_EXCL|O_CREAT, 0600); + } +#else + { + tfd = mkstemp(buf); + tfd = mkstemp(bp_tmp_file); + } +#endif + if (tfd == -1) { + phpdbg_error("Unable to create temporary file"); |
![]() All rights reserved. |
Last updated: Sat Feb 08 03:01:30 2025 UTC |