@@ -462,7 +462,7 @@ int mbfilter_unicode2sjis_emoji_kddi(int c, int *s1, mbfl_convert_filter *filter
462
462
463
463
/* If none of the KDDI national flag emoji matched, then we have no way
464
464
* to convert the previous codepoint... */
465
- mbfl_filt_conv_illegal_output (c1 , filter );
465
+ CK ( mbfl_filt_conv_illegal_output (c1 , filter ) );
466
466
}
467
467
468
468
if (c == '#' || (c >= '0' && c <= '9' )) {
@@ -534,7 +534,7 @@ int mbfilter_unicode2sjis_emoji_sb(int c, int *s1, mbfl_convert_filter *filter)
534
534
535
535
/* If none of the SoftBank national flag emoji matched, then we have no way
536
536
* to convert the previous codepoint... */
537
- mbfl_filt_conv_illegal_output (c1 , filter );
537
+ CK ( mbfl_filt_conv_illegal_output (c1 , filter ) );
538
538
}
539
539
540
540
if (c == '#' || (c >= '0' && c <= '9' )) {
@@ -855,7 +855,7 @@ int mbfl_filt_conv_sjis_mobile_flush(mbfl_convert_filter *filter)
855
855
} else if (filter -> status == 2 ) {
856
856
/* First of a pair of Regional Indicator codepoints came at the end of a string */
857
857
filter -> cache = filter -> status = 0 ;
858
- mbfl_filt_conv_illegal_output (c1 , filter );
858
+ CK ( mbfl_filt_conv_illegal_output (c1 , filter ) );
859
859
}
860
860
861
861
if (filter -> flush_function ) {
0 commit comments