diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-11 15:56:40 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-11 15:56:40 +0000 |
commit | 4f6c95d17abdd3aa983b36117f8a9c67405540e6 (patch) | |
tree | a7e92572059f9950d32513d19752138963ee4291 /Zend/zend_compile.c | |
parent | adf89828d20d7ee72b13cd516973fa739c492165 (diff) | |
download | php-git-4f6c95d17abdd3aa983b36117f8a9c67405540e6.tar.gz |
Whitespace
Diffstat (limited to 'Zend/zend_compile.c')
-rw-r--r-- | Zend/zend_compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index e4ca86e726..d6ca4de280 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -810,7 +810,7 @@ int zend_do_begin_function_call(znode *function_name TSRMLS_DC) zend_function *function; zend_str_tolower(function_name->u.constant.value.str.val, function_name->u.constant.value.str.len); - if (zend_hash_find(CG(function_table), function_name->u.constant.value.str.val,function_name->u.constant.value.str.len+1, (void **) &function)==FAILURE) { + if (zend_hash_find(CG(function_table), function_name->u.constant.value.str.val, function_name->u.constant.value.str.len+1, (void **) &function)==FAILURE) { znode tmp = *function_name; zval_copy_ctor(&tmp.u.constant); @@ -1772,7 +1772,7 @@ void zend_do_shell_exec(znode *result, znode *cmd TSRMLS_DC) opline->opcode = ZEND_DO_FCALL; opline->result.u.var = get_temporary_variable(CG(active_op_array)); opline->result.op_type = IS_VAR; - opline->op1.u.constant.value.str.val = estrndup("shell_exec",sizeof("shell_exec")-1); + opline->op1.u.constant.value.str.val = estrndup("shell_exec", sizeof("shell_exec")-1); opline->op1.u.constant.value.str.len = sizeof("shell_exec")-1; INIT_PZVAL(&opline->op1.u.constant); opline->op1.u.constant.type = IS_STRING; |