diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-31 06:28:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-31 06:28:05 +0000 |
commit | bc42c37513a730b0b3ff9cf29e14e45e4ec50c71 (patch) | |
tree | c4857143995f88a04e3f9d56cb5f8d757fa07575 /ext/standard/exec.c | |
parent | 0b7fdbb690b0270d13266a83521d1fd03e2c270c (diff) | |
download | php-git-bc42c37513a730b0b3ff9cf29e14e45e4ec50c71.tar.gz |
More TSRMLS_FETCH work. Got it under 400 now.
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r-- | ext/standard/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/exec.c b/ext/standard/exec.c index ee2f41acdd..c094b62ee4 100644 --- a/ext/standard/exec.c +++ b/ext/standard/exec.c @@ -175,7 +175,7 @@ int php_Exec(int type, char *cmd, pval *array, pval *return_value TSRMLS_DC) if (type == 1) { if (output) PUTS(buf); - sapi_flush(); + sapi_flush(TSRMLS_C); } else if (type == 2) { /* strip trailing whitespaces */ |