diff options
author | George Peter Banyard <girgias@php.net> | 2020-02-21 13:19:09 +0100 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-02-21 13:19:09 +0100 |
commit | 363d87f2568044bce53b0dd625609130646cea0f (patch) | |
tree | 6a2f09e4c4f9c46b93b147faa174e6e17d041f40 | |
parent | a87bfdfd255dd1402987df551597f9b98bde5c2b (diff) | |
download | php-git-363d87f2568044bce53b0dd625609130646cea0f.tar.gz |
Fix [-Wmissing-field-initializers] compiler warning in mbstring
Add missing NULL pointer for mbfl_convert_vtbl struct.
65 files changed, 341 insertions, 166 deletions
diff --git a/ext/mbstring/libmbfl/filters/mbfilter_7bit.c b/ext/mbstring/libmbfl/filters/mbfilter_7bit.c index 0a4169a2d8..df7b4db6e6 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_7bit.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_7bit.c @@ -52,7 +52,8 @@ const struct mbfl_convert_vtbl vtbl_8bit_7bit = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_any_7bit, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_7bit_8bit = { @@ -61,7 +62,8 @@ const struct mbfl_convert_vtbl vtbl_7bit_8bit = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_7bit_any, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_armscii8.c b/ext/mbstring/libmbfl/filters/mbfilter_armscii8.c index 599c1485fb..41ddf41b19 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_armscii8.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_armscii8.c @@ -62,7 +62,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_armscii8 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_armscii8, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_armscii8_wchar = { @@ -71,7 +72,8 @@ const struct mbfl_convert_vtbl vtbl_armscii8_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_armscii8_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_ascii.c b/ext/mbstring/libmbfl/filters/mbfilter_ascii.c index 71bd5b46fa..e31d968535 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_ascii.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_ascii.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_ascii_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ascii_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ascii = { @@ -72,7 +73,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ascii = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ascii, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_base64.c b/ext/mbstring/libmbfl/filters/mbfilter_base64.c index f79a3eb8e9..765afe522e 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_base64.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_base64.c @@ -52,7 +52,8 @@ const struct mbfl_convert_vtbl vtbl_8bit_b64 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_base64enc, - mbfl_filt_conv_base64enc_flush + mbfl_filt_conv_base64enc_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_b64_8bit = { @@ -61,7 +62,8 @@ const struct mbfl_convert_vtbl vtbl_b64_8bit = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_base64dec, - mbfl_filt_conv_base64dec_flush + mbfl_filt_conv_base64dec_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_big5.c b/ext/mbstring/libmbfl/filters/mbfilter_big5.c index 6c071e0e99..ad27b58bd3 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_big5.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_big5.c @@ -101,7 +101,8 @@ const struct mbfl_convert_vtbl vtbl_big5_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_big5_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_big5 = { @@ -110,7 +111,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_big5 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_big5, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL }; const struct mbfl_convert_vtbl vtbl_cp950_wchar = { @@ -119,7 +121,8 @@ const struct mbfl_convert_vtbl vtbl_cp950_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_big5_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp950 = { @@ -128,7 +131,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp950 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_big5, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_byte2.c b/ext/mbstring/libmbfl/filters/mbfilter_byte2.c index 572b9fab84..fcdd4a4c45 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_byte2.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_byte2.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_byte2be_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_byte2be_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_byte2be = { @@ -72,7 +73,9 @@ const struct mbfl_convert_vtbl vtbl_wchar_byte2be = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_byte2be, - mbfl_filt_conv_common_flush }; + mbfl_filt_conv_common_flush, + NULL, +}; const struct mbfl_convert_vtbl vtbl_byte2le_wchar = { mbfl_no_encoding_byte2le, @@ -80,7 +83,9 @@ const struct mbfl_convert_vtbl vtbl_byte2le_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_byte2le_wchar, - mbfl_filt_conv_common_flush }; + mbfl_filt_conv_common_flush, + NULL, +}; const struct mbfl_convert_vtbl vtbl_wchar_byte2le = { mbfl_no_encoding_wchar, @@ -88,7 +93,9 @@ const struct mbfl_convert_vtbl vtbl_wchar_byte2le = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_byte2le, - mbfl_filt_conv_common_flush }; + mbfl_filt_conv_common_flush, + NULL, +}; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_byte4.c b/ext/mbstring/libmbfl/filters/mbfilter_byte4.c index ed09bb3fde..4c2835ab1a 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_byte4.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_byte4.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_byte4be_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_byte4be_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_byte4be = { @@ -72,7 +73,9 @@ const struct mbfl_convert_vtbl vtbl_wchar_byte4be = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_byte4be, - mbfl_filt_conv_common_flush }; + mbfl_filt_conv_common_flush, + NULL, +}; const struct mbfl_convert_vtbl vtbl_byte4le_wchar = { mbfl_no_encoding_byte4le, @@ -80,7 +83,8 @@ const struct mbfl_convert_vtbl vtbl_byte4le_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_byte4le_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_byte4le = { @@ -89,7 +93,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_byte4le = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_byte4le, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp1251.c b/ext/mbstring/libmbfl/filters/mbfilter_cp1251.c index fec1b6f807..806102dfc3 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp1251.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp1251.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp1251 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp1251, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_cp1251_wchar = { @@ -72,7 +73,8 @@ const struct mbfl_convert_vtbl vtbl_cp1251_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp1251_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp1252.c b/ext/mbstring/libmbfl/filters/mbfilter_cp1252.c index a668364a5b..c0cf0f43f0 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp1252.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp1252.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_cp1252_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp1252_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp1252 = { @@ -72,7 +73,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp1252 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp1252, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp1254.c b/ext/mbstring/libmbfl/filters/mbfilter_cp1254.c index 89fc4b6f59..918428fbfb 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp1254.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp1254.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_cp1254_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp1254_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp1254 = { @@ -72,7 +73,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp1254 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp1254, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp5022x.c b/ext/mbstring/libmbfl/filters/mbfilter_cp5022x.c index dd3d1949fa..4fa2334444 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp5022x.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp5022x.c @@ -145,6 +145,7 @@ const struct mbfl_convert_vtbl vtbl_jis_ms_wchar = { mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_ms_wchar, mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_jis_ms = { @@ -153,7 +154,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_jis_ms = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_jis_ms, - mbfl_filt_conv_any_jis_flush + mbfl_filt_conv_any_jis_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_cp50220_wchar = { @@ -162,7 +164,8 @@ const struct mbfl_convert_vtbl vtbl_cp50220_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_ms_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp50220 = { @@ -181,7 +184,8 @@ const struct mbfl_convert_vtbl vtbl_cp50220raw_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_ms_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp50220raw = { @@ -200,7 +204,8 @@ const struct mbfl_convert_vtbl vtbl_cp50221_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_ms_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp50221 = { @@ -209,7 +214,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp50221 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp50221, - mbfl_filt_conv_any_jis_flush + mbfl_filt_conv_any_jis_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_cp50222_wchar = { @@ -218,7 +224,8 @@ const struct mbfl_convert_vtbl vtbl_cp50222_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_ms_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp50222 = { @@ -227,7 +234,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp50222 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp50222, - mbfl_filt_conv_wchar_cp50222_flush + mbfl_filt_conv_wchar_cp50222_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp51932.c b/ext/mbstring/libmbfl/filters/mbfilter_cp51932.c index 189feb2141..f099f51389 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp51932.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp51932.c @@ -86,7 +86,8 @@ const struct mbfl_convert_vtbl vtbl_cp51932_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp51932_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp51932 = { @@ -95,7 +96,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp51932 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp51932, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp850.c b/ext/mbstring/libmbfl/filters/mbfilter_cp850.c index 38f42b8695..187ee0f468 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp850.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp850.c @@ -59,7 +59,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp850 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp850, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_cp850_wchar = { @@ -68,7 +69,8 @@ const struct mbfl_convert_vtbl vtbl_cp850_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp850_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp866.c b/ext/mbstring/libmbfl/filters/mbfilter_cp866.c index 6f2d602112..3a135558eb 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp866.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp866.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp866 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp866, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_cp866_wchar = { @@ -72,7 +73,8 @@ const struct mbfl_convert_vtbl vtbl_cp866_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp866_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp932.c b/ext/mbstring/libmbfl/filters/mbfilter_cp932.c index dcadc4eaa7..49590622d7 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp932.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp932.c @@ -84,7 +84,8 @@ const struct mbfl_convert_vtbl vtbl_cp932_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp932_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp932 = { @@ -93,7 +94,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp932 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp932, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_cp936.c b/ext/mbstring/libmbfl/filters/mbfilter_cp936.c index 95eb6e8015..6c22dd0c13 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_cp936.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_cp936.c @@ -83,7 +83,8 @@ const struct mbfl_convert_vtbl vtbl_cp936_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_cp936_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_cp936 = { @@ -92,7 +93,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_cp936 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_cp936, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_euc_cn.c b/ext/mbstring/libmbfl/filters/mbfilter_euc_cn.c index 13a14855ec..eb39799b87 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_euc_cn.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_euc_cn.c @@ -83,7 +83,8 @@ const struct mbfl_convert_vtbl vtbl_euccn_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_euccn_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_euccn = { @@ -92,7 +93,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_euccn = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_euccn, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_euc_jp.c b/ext/mbstring/libmbfl/filters/mbfilter_euc_jp.c index aeeac851e4..c5a884ea0e 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_euc_jp.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_euc_jp.c @@ -84,7 +84,8 @@ const struct mbfl_convert_vtbl vtbl_eucjp_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_eucjp_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_eucjp = { @@ -93,7 +94,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_eucjp = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_eucjp, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_2004.c b/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_2004.c index d68a6cc38d..c8eff57e16 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_2004.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_2004.c @@ -64,7 +64,8 @@ const struct mbfl_convert_vtbl vtbl_eucjp2004_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis2004_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_eucjp2004 = { @@ -73,5 +74,6 @@ const struct mbfl_convert_vtbl vtbl_wchar_eucjp2004 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_jis2004, - mbfl_filt_conv_jis2004_flush + mbfl_filt_conv_jis2004_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_win.c b/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_win.c index 4c26e38fa8..ac032770d0 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_win.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_euc_jp_win.c @@ -87,7 +87,8 @@ const struct mbfl_convert_vtbl vtbl_eucjpwin_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_eucjpwin_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_eucjpwin = { @@ -96,7 +97,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_eucjpwin = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_eucjpwin, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_euc_kr.c b/ext/mbstring/libmbfl/filters/mbfilter_euc_kr.c index 8509ef4dd2..9e7925904b 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_euc_kr.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_euc_kr.c @@ -82,7 +82,8 @@ const struct mbfl_convert_vtbl vtbl_euckr_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_euckr_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_euckr = { @@ -91,7 +92,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_euckr = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_euckr, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_euc_tw.c b/ext/mbstring/libmbfl/filters/mbfilter_euc_tw.c index 290d8b83fb..f1174eab77 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_euc_tw.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_euc_tw.c @@ -84,7 +84,8 @@ const struct mbfl_convert_vtbl vtbl_euctw_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_euctw_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_euctw = { @@ -93,7 +94,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_euctw = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_euctw, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_gb18030.c b/ext/mbstring/libmbfl/filters/mbfilter_gb18030.c index f8d2e1954a..dcee840dbd 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_gb18030.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_gb18030.c @@ -65,7 +65,8 @@ const struct mbfl_convert_vtbl vtbl_gb18030_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_gb18030_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_gb18030 = { @@ -74,7 +75,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_gb18030 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_gb18030, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_htmlent.c b/ext/mbstring/libmbfl/filters/mbfilter_htmlent.c index 4213cadb7a..49162ac1b3 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_htmlent.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_htmlent.c @@ -74,7 +74,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_html = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_html_enc, - mbfl_filt_conv_html_enc_flush + mbfl_filt_conv_html_enc_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_html_wchar = { @@ -84,7 +85,8 @@ const struct mbfl_convert_vtbl vtbl_html_wchar = { mbfl_filt_conv_html_dec_dtor, mbfl_filt_conv_html_dec, mbfl_filt_conv_html_dec_flush, - mbfl_filt_conv_html_dec_copy }; + mbfl_filt_conv_html_dec_copy, +}; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_hz.c b/ext/mbstring/libmbfl/filters/mbfilter_hz.c index 0e360726ed..13abc42766 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_hz.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_hz.c @@ -62,7 +62,8 @@ const struct mbfl_convert_vtbl vtbl_hz_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_hz_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_hz = { @@ -71,7 +72,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_hz = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_hz, - mbfl_filt_conv_any_hz_flush + mbfl_filt_conv_any_hz_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso2022_jp_ms.c b/ext/mbstring/libmbfl/filters/mbfilter_iso2022_jp_ms.c index cec21c26f2..8c5605937b 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso2022_jp_ms.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso2022_jp_ms.c @@ -66,7 +66,8 @@ const struct mbfl_convert_vtbl vtbl_2022jpms_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_2022jpms_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_2022jpms = { @@ -75,7 +76,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_2022jpms = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_2022jpms, - mbfl_filt_conv_any_2022jpms_flush + mbfl_filt_conv_any_2022jpms_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso2022_kr.c b/ext/mbstring/libmbfl/filters/mbfilter_iso2022_kr.c index bd1227e6a5..3fb856c2b7 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso2022_kr.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso2022_kr.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_2022kr = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_2022kr, - mbfl_filt_conv_any_2022kr_flush + mbfl_filt_conv_any_2022kr_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_2022kr_wchar = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_2022kr_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_2022kr_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_2004.c b/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_2004.c index b3c5f60f69..79f88300eb 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_2004.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_2004.c @@ -64,7 +64,8 @@ const struct mbfl_convert_vtbl vtbl_2022jp_2004_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis2004_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_2022jp_2004 = { @@ -73,7 +74,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_2022jp_2004 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_jis2004, - mbfl_filt_conv_jis2004_flush + mbfl_filt_conv_jis2004_flush, + NULL, }; static int mbfl_filt_ident_2022jp_2004(int c, mbfl_identify_filter *filter) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c b/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c index ecfdee1109..bf45a8065c 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso2022jp_mobile.c @@ -68,7 +68,8 @@ const struct mbfl_convert_vtbl vtbl_2022jp_kddi_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_2022jp_mobile_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_2022jp_kddi = { @@ -77,7 +78,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_2022jp_kddi = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_2022jp_mobile, - mbfl_filt_conv_any_jis_flush + mbfl_filt_conv_any_jis_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1.c index 2b75b51e58..5d59388744 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_1.c @@ -60,7 +60,8 @@ const struct mbfl_convert_vtbl vtbl_8859_1_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_1_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_1 = { @@ -69,7 +70,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_1 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_1, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_10.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_10.c index bb050df328..15451b9d42 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_10.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_10.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_10_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_10_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_10 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_10 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_10, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_13.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_13.c index 5398abd4f7..381d4f6b5d 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_13.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_13.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_13_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_13_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_13 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_13 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_13, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_14.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_14.c index bd07ac7b61..ed2d5b3098 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_14.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_14.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_14_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_14_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_14 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_14 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_14, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_15.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_15.c index a564ac4fcf..4cae1ec5f6 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_15.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_15.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_15_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_15_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_15 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_15 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_15, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_16.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_16.c index 2600822006..b2370b4132 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_16.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_16.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_16_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_16_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_16 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_16 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_16, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_2.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_2.c index 245cc914dc..1496eb0aad 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_2.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_2.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_2_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_2_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_2 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_2 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_2, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_3.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_3.c index 557983b7a7..4086646968 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_3.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_3.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_3_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_3_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_3 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_3 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_3, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_4.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_4.c index f481e01465..477c18d259 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_4.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_4.c @@ -60,7 +60,8 @@ const struct mbfl_convert_vtbl vtbl_8859_4_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_4_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_4 = { @@ -69,7 +70,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_4 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_4, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_5.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_5.c index d00a0afff4..9934dbb5c7 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_5.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_5.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_5_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_5_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_5 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_5 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_5, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_6.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_6.c index 45120cf487..1235fdbd23 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_6.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_6.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_6_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_6_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_6 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_6 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_6, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_7.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_7.c index 79fe4d7509..f62018b9c2 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_7.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_7.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_7_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_7_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_7 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_7 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_7, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_8.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_8.c index a7124d3e4e..1ed1cfc50d 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_8.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_8.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_8_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_8_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_8 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_8 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_8, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_9.c b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_9.c index ba71bfd6a4..3b686a42be 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_iso8859_9.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_iso8859_9.c @@ -61,7 +61,8 @@ const struct mbfl_convert_vtbl vtbl_8859_9_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8859_9_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8859_9 = { @@ -70,7 +71,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8859_9 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8859_9, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_jis.c b/ext/mbstring/libmbfl/filters/mbfilter_jis.c index f3bd3f8141..93cb1e88ac 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_jis.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_jis.c @@ -82,7 +82,8 @@ const struct mbfl_convert_vtbl vtbl_jis_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_jis = { @@ -91,7 +92,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_jis = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_jis, - mbfl_filt_conv_any_jis_flush + mbfl_filt_conv_any_jis_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_2022jp_wchar = { @@ -100,7 +102,8 @@ const struct mbfl_convert_vtbl vtbl_2022jp_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_2022jp = { @@ -109,7 +112,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_2022jp = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_2022jp, - mbfl_filt_conv_any_jis_flush + mbfl_filt_conv_any_jis_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_koi8r.c b/ext/mbstring/libmbfl/filters/mbfilter_koi8r.c index a9a4479aed..04dcf2d639 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_koi8r.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_koi8r.c @@ -63,7 +63,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_koi8r = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_koi8r, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_koi8r_wchar = { @@ -72,7 +73,8 @@ const struct mbfl_convert_vtbl vtbl_koi8r_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_koi8r_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_koi8u.c b/ext/mbstring/libmbfl/filters/mbfilter_koi8u.c index 675ea03955..d1e310bde7 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_koi8u.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_koi8u.c @@ -60,7 +60,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_koi8u = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_koi8u, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_koi8u_wchar = { @@ -69,7 +70,8 @@ const struct mbfl_convert_vtbl vtbl_koi8u_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_koi8u_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_qprint.c b/ext/mbstring/libmbfl/filters/mbfilter_qprint.c index 0d10ea49f8..42dfde108b 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_qprint.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_qprint.c @@ -54,7 +54,9 @@ const struct mbfl_convert_vtbl vtbl_8bit_qprint = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_qprintenc, - mbfl_filt_conv_qprintenc_flush }; + mbfl_filt_conv_qprintenc_flush, + NULL, +}; const struct mbfl_convert_vtbl vtbl_qprint_8bit = { mbfl_no_encoding_qprint, @@ -62,7 +64,9 @@ const struct mbfl_convert_vtbl vtbl_qprint_8bit = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_qprintdec, - mbfl_filt_conv_qprintdec_flush }; + mbfl_filt_conv_qprintdec_flush, + NULL, +}; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_sjis.c b/ext/mbstring/libmbfl/filters/mbfilter_sjis.c index 73ded6c704..f64fd13817 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_sjis.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_sjis.c @@ -87,7 +87,8 @@ const struct mbfl_convert_vtbl vtbl_sjis_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_sjis_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis = { @@ -96,7 +97,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_sjis, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_sjis_2004.c b/ext/mbstring/libmbfl/filters/mbfilter_sjis_2004.c index ac476b3e19..481ae557cc 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_sjis_2004.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_sjis_2004.c @@ -69,7 +69,8 @@ const struct mbfl_convert_vtbl vtbl_sjis2004_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_jis2004_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis2004 = { @@ -78,7 +79,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis2004 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_jis2004, - mbfl_filt_conv_jis2004_flush + mbfl_filt_conv_jis2004_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_sjis_mac.c b/ext/mbstring/libmbfl/filters/mbfilter_sjis_mac.c index 8bc8e6e68f..e52ea2f321 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_sjis_mac.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_sjis_mac.c @@ -70,7 +70,8 @@ const struct mbfl_convert_vtbl vtbl_sjis_mac_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_sjis_mac_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis_mac = { @@ -79,7 +80,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis_mac = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_sjis_mac, - mbfl_filt_conv_sjis_mac_flush + mbfl_filt_conv_sjis_mac_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_sjis_mobile.c b/ext/mbstring/libmbfl/filters/mbfilter_sjis_mobile.c index 316250ddb2..e3faa3fe20 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_sjis_mobile.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_sjis_mobile.c @@ -107,7 +107,8 @@ const struct mbfl_convert_vtbl vtbl_sjis_docomo_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_sjis_mobile_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis_docomo = { @@ -116,7 +117,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis_docomo = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_sjis_mobile, - mbfl_filt_conv_sjis_mobile_flush + mbfl_filt_conv_sjis_mobile_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_sjis_kddi_wchar = { @@ -125,7 +127,8 @@ const struct mbfl_convert_vtbl vtbl_sjis_kddi_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_sjis_mobile_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis_kddi = { @@ -134,7 +137,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis_kddi = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_sjis_mobile, - mbfl_filt_conv_sjis_mobile_flush + mbfl_filt_conv_sjis_mobile_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_sjis_sb_wchar = { @@ -143,7 +147,8 @@ const struct mbfl_convert_vtbl vtbl_sjis_sb_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_sjis_mobile_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis_sb = { @@ -152,7 +157,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis_sb = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_sjis_mobile, - mbfl_filt_conv_sjis_mobile_flush + mbfl_filt_conv_sjis_mobile_flush, + NULL, }; static const char nflags_s[10][2] = {"CN","DE","ES","FR","GB","IT","JP","KR","RU","US"}; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_sjis_open.c b/ext/mbstring/libmbfl/filters/mbfilter_sjis_open.c index 855b6eda8b..a3cea99744 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_sjis_open.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_sjis_open.c @@ -84,7 +84,8 @@ const struct mbfl_convert_vtbl vtbl_sjis_open_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_sjis_open_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_sjis_open = { @@ -93,7 +94,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_sjis_open = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_sjis_open, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_tl_jisx0201_jisx0208.c b/ext/mbstring/libmbfl/filters/mbfilter_tl_jisx0201_jisx0208.c index b99c658e4d..e62472c6ac 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_tl_jisx0201_jisx0208.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_tl_jisx0201_jisx0208.c @@ -297,5 +297,6 @@ const struct mbfl_convert_vtbl vtbl_tl_jisx0201_jisx0208 = { mbfl_filt_tl_jisx0201_jisx0208_init, mbfl_filt_tl_jisx0201_jisx0208_cleanup, mbfl_filt_tl_jisx0201_jisx0208, - mbfl_filt_tl_jisx0201_jisx0208_flush + mbfl_filt_tl_jisx0201_jisx0208_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_ucs2.c b/ext/mbstring/libmbfl/filters/mbfilter_ucs2.c index da42ef10f5..ffe493982b 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_ucs2.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_ucs2.c @@ -75,7 +75,8 @@ const struct mbfl_convert_vtbl vtbl_ucs2_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ucs2_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ucs2 = { @@ -84,7 +85,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ucs2 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ucs2be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_ucs2be_wchar = { @@ -93,7 +95,8 @@ const struct mbfl_convert_vtbl vtbl_ucs2be_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ucs2be_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ucs2be = { @@ -102,7 +105,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ucs2be = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ucs2be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_ucs2le_wchar = { @@ -111,7 +115,8 @@ const struct mbfl_convert_vtbl vtbl_ucs2le_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ucs2le_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ucs2le = { @@ -120,7 +125,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ucs2le = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ucs2le, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_ucs4.c b/ext/mbstring/libmbfl/filters/mbfilter_ucs4.c index 34715cd560..696788e559 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_ucs4.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_ucs4.c @@ -75,7 +75,8 @@ const struct mbfl_convert_vtbl vtbl_ucs4_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ucs4_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ucs4 = { @@ -84,7 +85,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ucs4 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ucs4be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_ucs4be_wchar = { @@ -93,7 +95,8 @@ const struct mbfl_convert_vtbl vtbl_ucs4be_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ucs4be_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ucs4be = { @@ -102,7 +105,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ucs4be = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ucs4be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_ucs4le_wchar = { @@ -111,7 +115,8 @@ const struct mbfl_convert_vtbl vtbl_ucs4le_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_ucs4le_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_ucs4le = { @@ -120,7 +125,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_ucs4le = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_ucs4le, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_uhc.c b/ext/mbstring/libmbfl/filters/mbfilter_uhc.c index 7995c812c2..1827292e0f 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_uhc.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_uhc.c @@ -83,7 +83,8 @@ const struct mbfl_convert_vtbl vtbl_uhc_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_uhc_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_uhc = { @@ -92,7 +93,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_uhc = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_uhc, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf16.c b/ext/mbstring/libmbfl/filters/mbfilter_utf16.c index 961bfdcaf3..f5779e06c7 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf16.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf16.c @@ -75,7 +75,8 @@ const struct mbfl_convert_vtbl vtbl_utf16_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf16_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf16 = { @@ -84,7 +85,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf16 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf16be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf16be_wchar = { @@ -93,7 +95,8 @@ const struct mbfl_convert_vtbl vtbl_utf16be_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf16be_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf16be = { @@ -102,7 +105,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf16be = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf16be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf16le_wchar = { @@ -111,7 +115,8 @@ const struct mbfl_convert_vtbl vtbl_utf16le_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf16le_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf16le = { @@ -120,7 +125,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf16le = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf16le, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf32.c b/ext/mbstring/libmbfl/filters/mbfilter_utf32.c index 3281cf9494..460794f9d6 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf32.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf32.c @@ -75,7 +75,8 @@ const struct mbfl_convert_vtbl vtbl_utf32_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf32_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf32 = { @@ -84,7 +85,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf32 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf32be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf32be_wchar = { @@ -93,7 +95,8 @@ const struct mbfl_convert_vtbl vtbl_utf32be_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf32be_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf32be = { @@ -102,7 +105,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf32be = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf32be, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf32le_wchar = { @@ -111,7 +115,8 @@ const struct mbfl_convert_vtbl vtbl_utf32le_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf32le_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf32le = { @@ -120,7 +125,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf32le = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf32le, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf7.c b/ext/mbstring/libmbfl/filters/mbfilter_utf7.c index 901c1a4a8b..424798d745 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf7.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf7.c @@ -75,7 +75,8 @@ const struct mbfl_convert_vtbl vtbl_utf7_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf7_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf7 = { @@ -84,7 +85,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf7 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf7, - mbfl_filt_conv_wchar_utf7_flush + mbfl_filt_conv_wchar_utf7_flush, + NULL, }; diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf7imap.c b/ext/mbstring/libmbfl/filters/mbfilter_utf7imap.c index 4203124cc3..d4ad592ca3 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf7imap.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf7imap.c @@ -51,7 +51,9 @@ const struct mbfl_convert_vtbl vtbl_utf7imap_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf7imap_wchar, - mbfl_filt_conv_common_flush }; + mbfl_filt_conv_common_flush, + NULL, +}; const struct mbfl_convert_vtbl vtbl_wchar_utf7imap = { mbfl_no_encoding_wchar, @@ -59,7 +61,9 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf7imap = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf7imap, - mbfl_filt_conv_wchar_utf7imap_flush }; + mbfl_filt_conv_wchar_utf7imap_flush, + NULL, +}; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf8.c b/ext/mbstring/libmbfl/filters/mbfilter_utf8.c index 05815bbdb0..f624e153a4 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf8.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf8.c @@ -81,7 +81,8 @@ const struct mbfl_convert_vtbl vtbl_utf8_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf8_wchar, - mbfl_filt_conv_utf8_wchar_flush + mbfl_filt_conv_utf8_wchar_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf8 = { @@ -90,7 +91,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf8 = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf8, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_utf8_mobile.c b/ext/mbstring/libmbfl/filters/mbfilter_utf8_mobile.c index 3e166609e7..173e9f3b9b 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_utf8_mobile.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_utf8_mobile.c @@ -124,7 +124,8 @@ const struct mbfl_convert_vtbl vtbl_utf8_docomo_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf8_mobile_wchar, - mbfl_filt_conv_utf8_wchar_flush + mbfl_filt_conv_utf8_wchar_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf8_docomo = { @@ -133,7 +134,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf8_docomo = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf8_mobile, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf8_kddi_a_wchar = { @@ -142,7 +144,8 @@ const struct mbfl_convert_vtbl vtbl_utf8_kddi_a_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf8_mobile_wchar, - mbfl_filt_conv_utf8_wchar_flush + mbfl_filt_conv_utf8_wchar_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf8_kddi_a = { @@ -151,7 +154,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf8_kddi_a = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf8_mobile, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf8_kddi_b_wchar = { @@ -160,7 +164,8 @@ const struct mbfl_convert_vtbl vtbl_utf8_kddi_b_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf8_mobile_wchar, - mbfl_filt_conv_utf8_wchar_flush + mbfl_filt_conv_utf8_wchar_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf8_kddi_b = { @@ -169,7 +174,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf8_kddi_b = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf8_mobile, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_utf8_sb_wchar = { @@ -178,7 +184,8 @@ const struct mbfl_convert_vtbl vtbl_utf8_sb_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_utf8_mobile_wchar, - mbfl_filt_conv_utf8_wchar_flush + mbfl_filt_conv_utf8_wchar_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_utf8_sb = { @@ -187,7 +194,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_utf8_sb = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_utf8_mobile, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/filters/mbfilter_uuencode.c b/ext/mbstring/libmbfl/filters/mbfilter_uuencode.c index 0645ef68c6..b6601fda9f 100644 --- a/ext/mbstring/libmbfl/filters/mbfilter_uuencode.c +++ b/ext/mbstring/libmbfl/filters/mbfilter_uuencode.c @@ -51,7 +51,8 @@ const struct mbfl_convert_vtbl vtbl_uuencode_8bit = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_uudec, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/mbfl/mbfilter_8bit.c b/ext/mbstring/libmbfl/mbfl/mbfilter_8bit.c index a6a4e9f01f..98c9644f9d 100644 --- a/ext/mbstring/libmbfl/mbfl/mbfilter_8bit.c +++ b/ext/mbstring/libmbfl/mbfl/mbfilter_8bit.c @@ -60,7 +60,8 @@ const struct mbfl_convert_vtbl vtbl_8bit_wchar = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_8bit_wchar, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; const struct mbfl_convert_vtbl vtbl_wchar_8bit = { @@ -69,7 +70,8 @@ const struct mbfl_convert_vtbl vtbl_wchar_8bit = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_wchar_8bit, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; #define CK(statement) do { if ((statement) < 0) return (-1); } while (0) diff --git a/ext/mbstring/libmbfl/mbfl/mbfilter_pass.c b/ext/mbstring/libmbfl/mbfl/mbfilter_pass.c index 343a968794..34543786d8 100644 --- a/ext/mbstring/libmbfl/mbfl/mbfilter_pass.c +++ b/ext/mbstring/libmbfl/mbfl/mbfilter_pass.c @@ -55,7 +55,8 @@ const struct mbfl_convert_vtbl vtbl_pass = { mbfl_filt_conv_common_ctor, mbfl_filt_conv_common_dtor, mbfl_filt_conv_pass, - mbfl_filt_conv_common_flush + mbfl_filt_conv_common_flush, + NULL, }; int mbfl_filt_conv_pass(int c, mbfl_convert_filter *filter) |