diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-05-15 21:17:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-05-15 21:17:11 +0000 |
commit | e3e0a182a7dd19c9e5186d5f5963f584b0eb373a (patch) | |
tree | a1eafeb7c1276d93d32680134e82af57406b8aba /iconv/gconv_open.c | |
parent | bd687f7ab43028d3722984a6bcf48115bb82d9bb (diff) | |
download | glibc-e3e0a182a7dd19c9e5186d5f5963f584b0eb373a.tar.gz glibc-e3e0a182a7dd19c9e5186d5f5963f584b0eb373a.tar.xz glibc-e3e0a182a7dd19c9e5186d5f5963f584b0eb373a.zip |
Update.
1998-05-15 21:07 Ulrich Drepper <drepper@cygnus.com> * iconv/gconv.h (gconv_step_data): Add new fields invocation_counter and internal_use. * iconv/gconv_open.c (__gconv_open): Initialize invocation_counter and internal_use. * iconv/skeleton.c: Increment invocation_counter. * iconvdata/iso-2022-kr.c: When used in iconv() emit designator sequence first. * iconv/skeleton.c (FROM_DIRECTION): Completely embrace expression. * iconvdata/iso-2022-jp.c: Likewise. * iconvdata/iso646.c: Likewise. * iconvdata/Makefile: Correct rpath definition for ISO-2022-KR.
Diffstat (limited to 'iconv/gconv_open.c')
-rw-r--r-- | iconv/gconv_open.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/iconv/gconv_open.c b/iconv/gconv_open.c index d7e0191cca..fb5f88b9a3 100644 --- a/iconv/gconv_open.c +++ b/iconv/gconv_open.c @@ -65,6 +65,12 @@ __gconv_open (const char *toset, const char *fromset, gconv_t *handle) buffer. */ data[cnt].is_last = cnt == nsteps - 1; + /* Reset the counter. */ + data[cnt].invocation_counter = 0; + + /* It's a regular use. */ + data[cnt].internal_use = 0; + /* We use the `mbstate_t' member in DATA. */ data[cnt].statep = &data[cnt].__state; |