mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: NEWS Fix bug #67390 insecure temporary file use in the configure script
This commit is contained in:
commit
38e11dfaee
1 changed files with 1 additions and 1 deletions
|
@ -1711,7 +1711,7 @@ int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
long position;
|
long position;
|
||||||
char *filename = "/tmp/phpglibccheck";
|
char *filename = tmpnam(NULL);
|
||||||
|
|
||||||
fp = fopen(filename, "w");
|
fp = fopen(filename, "w");
|
||||||
if (fp == NULL) {
|
if (fp == NULL) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue