Skip to content

Commit

Permalink
Fix bug #67390 insecure temporary file use in the configure script
Browse files Browse the repository at this point in the history
  • Loading branch information
remicollet committed Jun 6, 2014
1 parent 56c9e22 commit 91bcadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 91bcadd

Please sign in to comment.