summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2009-03-06 15:48:30 +0000
committerIlia Alshanetsky <iliaa@php.net>2009-03-06 15:48:30 +0000
commit483d9636e995b1c08d94bdc12ad556f32eed9b42 (patch)
treeb23036aaf36ebf0af2cdf252d30279aeaa4b5452
parent2bc612bc0cb324320cb232a2561510907caf8270 (diff)
downloadphp-git-483d9636e995b1c08d94bdc12ad556f32eed9b42.tar.gz
Improve parameter parsing code
-rw-r--r--ext/mbstring/mbstring.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c
index 5c50fa636d..2474c17d50 100644
--- a/ext/mbstring/mbstring.c
+++ b/ext/mbstring/mbstring.c
@@ -2279,7 +2279,7 @@ PHP_FUNCTION(mb_strrpos)
mbfl_string haystack, needle;
char *enc_name = NULL;
int enc_name_len;
- zval **zoffset;
+ zval **zoffset = NULL;
long offset = 0, str_flg;
char *enc_name2 = NULL;
int enc_name_len2;
@@ -2295,7 +2295,7 @@ PHP_FUNCTION(mb_strrpos)
RETURN_FALSE;
}
- if(ZEND_NUM_ARGS() >= 3) {
+ if (zoffset) {
if (Z_TYPE_PP(zoffset) == IS_STRING) {
enc_name2 = Z_STRVAL_PP(zoffset);
enc_name_len2 = Z_STRLEN_PP(zoffset);
@@ -2323,9 +2323,9 @@ PHP_FUNCTION(mb_strrpos)
}
}
- if(str_flg) {
- convert_to_long_ex(zoffset);
- offset = Z_LVAL_PP(zoffset);
+ if (str_flg) {
+ convert_to_long_ex(zoffset);
+ offset = Z_LVAL_PP(zoffset);
} else {
enc_name = enc_name2;
enc_name_len = enc_name_len2;