mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
Fix issue 68 (made check win only)
This commit is contained in:
parent
891477dc1c
commit
b0273e749c
1 changed files with 5 additions and 5 deletions
10
phpdbg.c
10
phpdbg.c
|
@ -887,17 +887,17 @@ phpdbg_main:
|
|||
bp_tmp_file = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
if (!bp_tmp_file) {
|
||||
phpdbg_error("Unable to create temporary file");
|
||||
return 1;
|
||||
}
|
||||
#else
|
||||
if (!mkstemp(bp_tmp_file)) {
|
||||
memset(bp_tmp_file, 0, sizeof(bp_tmp_file));
|
||||
}
|
||||
#endif
|
||||
|
||||
if (!bp_tmp_file) {
|
||||
phpdbg_error(
|
||||
"Unable to create temporary file");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
ini_entries = NULL;
|
||||
ini_entries_len = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue