Skip to content

Commit

Permalink
Fixed bug: php#17137, test pass still
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar committed Jun 18, 2002
1 parent 6997917 commit cff4039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/mbstring/mbstring.c
Original file line number Diff line number Diff line change
Expand Up @@ -2792,8 +2792,8 @@ PHP_FUNCTION(mb_convert_variables)
}
}
} else if (Z_TYPE_PP(var) == IS_STRING) {
string.val = Z_STRVAL_PP(args[n]);
string.len = Z_STRLEN_PP(args[n]);
string.val = Z_STRVAL_PP(var);
string.len = Z_STRLEN_PP(var);
if (mbfl_encoding_detector_feed(identd, &string TSRMLS_CC)) {
goto detect_end; /* complete detecting */
}
Expand Down

0 comments on commit cff4039

Please sign in to comment.