Remove unused variables

This commit is contained in:
Pierrick Charron 2010-04-27 00:09:55 +00:00
parent dd8e59da8f
commit 91ee07814e
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ PHPAPI int php_exec(int type, char *cmd, zval *array, zval *return_value TSRMLS_
FILE *fp; FILE *fp;
char *buf, *tmp=NULL; char *buf, *tmp=NULL;
int l = 0, pclose_return; int l = 0, pclose_return;
char *b, *c, *d=NULL; char *b, *d=NULL;
php_stream *stream; php_stream *stream;
size_t buflen, bufl = 0; size_t buflen, bufl = 0;
#if PHP_SIGCHILD #if PHP_SIGCHILD

View File

@ -937,7 +937,7 @@ PHP_FUNCTION(popen)
int command_len, mode_len; int command_len, mode_len;
FILE *fp; FILE *fp;
php_stream *stream; php_stream *stream;
char *posix_mode, *buf = 0; char *posix_mode;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &command, &command_len, &mode, &mode_len) == FAILURE) { if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &command, &command_len, &mode, &mode_len) == FAILURE) {
return; return;