You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
6 years ago
|
commit d540fc8a66507bbbdc7e6594872786527c7667fa
|
||
|
Author: Ondřej Bílka <neleai@seznam.cz>
|
||
|
Date: Mon Nov 18 13:12:29 2013 +0100
|
||
|
|
||
|
Remove unused variable.
|
||
|
|
||
|
diff --git a/localedata/tests-mbwc/tst_mbrtowc.c b/localedata/tests-mbwc/tst_mbrtowc.c
|
||
|
index 3a6070a870550552..ffb33ce11e1d72b7 100644
|
||
|
--- a/localedata/tests-mbwc/tst_mbrtowc.c
|
||
|
+++ b/localedata/tests-mbwc/tst_mbrtowc.c
|
||
|
@@ -16,7 +16,7 @@ tst_mbrtowc (FILE * fp, int debug_flg)
|
||
|
char w_flg, s_flg;
|
||
|
char *s;
|
||
|
size_t n;
|
||
|
- char t_flg, t_ini;
|
||
|
+ char t_flg;
|
||
|
static mbstate_t t = { 0 };
|
||
|
mbstate_t *pt;
|
||
|
wchar_t wc, *pwc, wc_ex;
|
||
|
@@ -42,7 +42,6 @@ tst_mbrtowc (FILE * fp, int debug_flg)
|
||
|
s = TST_INPUT_SEQ (mbrtowc).s;
|
||
|
n = TST_INPUT_SEQ (mbrtowc).n;
|
||
|
t_flg = TST_INPUT_SEQ (mbrtowc).t_flg;
|
||
|
- t_ini = TST_INPUT_SEQ (mbrtowc).t_init;
|
||
|
pwc = (w_flg == 0) ? NULL : &wc;
|
||
|
|
||
|
if (s_flg == 0)
|
||
|
@@ -56,12 +55,7 @@ tst_mbrtowc (FILE * fp, int debug_flg)
|
||
|
}
|
||
|
|
||
|
pt = (t_flg == 0) ? NULL : &t;
|
||
|
-#if 0
|
||
|
- if (t_ini != 0)
|
||
|
- {
|
||
|
- memset (&t, 0, sizeof (t));
|
||
|
- }
|
||
|
-#endif
|
||
|
+
|
||
|
TST_CLEAR_ERRNO;
|
||
|
ret = mbrtowc (pwc, s, n, pt);
|
||
|
TST_SAVE_ERRNO;
|