diff options
author | Wez Furlong <wez@php.net> | 2002-04-03 13:47:21 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-04-03 13:47:21 +0000 |
commit | fea3b0a7f8d78794feb4ce8b9b05816e64b0fe2f (patch) | |
tree | ff63e11f1f76720dbde2e22884169bd7eec5a751 /ext/standard/exec.c | |
parent | 27d1f7db161cfb1b68b7927415080230bb9efb72 (diff) | |
download | php-git-fea3b0a7f8d78794feb4ce8b9b05816e64b0fe2f.tar.gz |
fix TS build
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r-- | ext/standard/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/exec.c b/ext/standard/exec.c index e125f0a5e2..c440a4059f 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -46,7 +46,7 @@ #endif /* {{{ 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; char *space, *sep, *arg0; @@ -678,7 +678,7 @@ PHP_FUNCTION(proc_open) RETURN_FALSE; } - if (FAILURE == php_make_safe_mode_command(command, &command)) { + if (FAILURE == php_make_safe_mode_command(command, &command TSRMLS_CC)) { RETURN_FALSE; } |