Browse Source

Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  NEWS
  Fix bug #67390 insecure temporary file use in the configure script
pull/1335/head
Remi Collet 12 years ago
parent
commit
38e11dfaee
  1. 2
      acinclude.m4

2
acinclude.m4

@ -1711,7 +1711,7 @@ int main(int argc, char *argv[])
{
FILE *fp;
long position;
char *filename = "/tmp/phpglibccheck";
char *filename = tmpnam(NULL);
fp = fopen(filename, "w");
if (fp == NULL) {

Loading…
Cancel
Save