mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 09:43:32 +08:00
(struct builtin_map): Remove init and end elements. (BUILTIN_TRANSFORMATION): Remove Init and End parameters. (__gconv_get_builtin_trans): Initialize __init_fct and __end_fct to NULL.
This commit is contained in:
parent
2abe0b543f
commit
2c42236695
@ -1,5 +1,5 @@
|
||||
/* Table for builtin transformation mapping.
|
||||
Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||
|
||||
@ -31,8 +31,6 @@ static struct builtin_map
|
||||
{
|
||||
const char *name;
|
||||
__gconv_fct fct;
|
||||
__gconv_init_fct init;
|
||||
__gconv_end_fct end;
|
||||
|
||||
int min_needed_from;
|
||||
int max_needed_from;
|
||||
@ -41,13 +39,11 @@ static struct builtin_map
|
||||
|
||||
} map[] =
|
||||
{
|
||||
#define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, Init, End, MinF, \
|
||||
MaxF, MinT, MaxT) \
|
||||
#define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, MinF, MaxF, \
|
||||
MinT, MaxT) \
|
||||
{ \
|
||||
.name = Name, \
|
||||
.fct = Fct, \
|
||||
.init = Init, \
|
||||
.end = End, \
|
||||
\
|
||||
.min_needed_from = MinF, \
|
||||
.max_needed_from = MaxF, \
|
||||
@ -73,8 +69,8 @@ __gconv_get_builtin_trans (const char *name, struct __gconv_step *step)
|
||||
assert (cnt < sizeof (map) / sizeof (map[0]));
|
||||
|
||||
step->__fct = map[cnt].fct;
|
||||
step->__init_fct = map[cnt].init;
|
||||
step->__end_fct = map[cnt].end;
|
||||
step->__init_fct = NULL;
|
||||
step->__end_fct = NULL;
|
||||
step->__shlib_handle = NULL;
|
||||
step->__modname = NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user