Skip to content

Commit

Permalink
Flush filter during non-strict encoding detection
Browse files Browse the repository at this point in the history
If we reach the end of the string without reducing to a single
encoding, then we should flush to check whether the last character
is incomplete.
  • Loading branch information
nikic committed Aug 27, 2021
1 parent 1ce81b6 commit 43cb254
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
8 changes: 3 additions & 5 deletions ext/mbstring/libmbfl/mbfl/mbfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,9 @@ int mbfl_encoding_detector_feed(mbfl_encoding_detector *identd, mbfl_string *str
p++;
}

if (identd->strict) {
for (int i = 0; i < num; i++) {
mbfl_convert_filter *filter = identd->filter_list[i];
(filter->filter_flush)(filter);
}
for (int i = 0; i < num; i++) {
mbfl_convert_filter *filter = identd->filter_list[i];
(filter->filter_flush)(filter);
}

return 0;
Expand Down
15 changes: 15 additions & 0 deletions ext/mbstring/tests/mb_detect_encoding_incomplete_sequence.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
--TEST--
mb_detect_encoding() with incomplete trailing sequence
--EXTENSIONS--
mbstring
--FILE--
<?php

// Even in non-strict mode, this should detect as ISO-8859-1. When the end of the string is
// reached neither have illegal characters and would be picked based on score. However, flushing
// the string will disqualify UTF-8 due to illegal characters.
var_dump(mb_detect_encoding("A\xC2", ["UTF-8", "ISO-8859-1"]));

?>
--EXPECT--
string(10) "ISO-8859-1"

0 comments on commit 43cb254

Please sign in to comment.