mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
fix TS build
This commit is contained in:
parent
27d1f7db16
commit
fea3b0a7f8
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* {{{ php_make_safe_mode_command */
|
/* {{{ php_make_safe_mode_command */
|
||||||
static int php_make_safe_mode_command(char *cmd, char **safecmd)
|
static int php_make_safe_mode_command(char *cmd, char **safecmd TSRMLS_DC)
|
||||||
{
|
{
|
||||||
int lcmd, larg0, ldir, len, overflow_limit;
|
int lcmd, larg0, ldir, len, overflow_limit;
|
||||||
char *space, *sep, *arg0;
|
char *space, *sep, *arg0;
|
||||||
|
@ -678,7 +678,7 @@ PHP_FUNCTION(proc_open)
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (FAILURE == php_make_safe_mode_command(command, &command)) {
|
if (FAILURE == php_make_safe_mode_command(command, &command TSRMLS_CC)) {
|
||||||
RETURN_FALSE;
|
RETURN_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue