mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
1999-11-23 Thorsten Kukuk <kukuk@suse.de> * iconv/skeleton.c: Don't access next_step->fct if datat->is_last is true. 1999-11-23 Andreas Jaeger <aj@suse.de> * include/sys/select.h: Remove K&R compatibility. * include/sys/statfs.h: Likewise. * include/gnu/libc-version.h: Likewise. * include/db_185.h: Likewise. * include/dlfcn.h: Likewise. * include/search.h: Likewise. * include/setjmp.h: Likewise. * include/signal.h: Likewise. * include/stdio.h: Likewise. * include/unistd.h: Likewise.
This commit is contained in:
@ -199,7 +199,7 @@ FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data,
|
||||
{
|
||||
struct __gconv_step *next_step = step + 1;
|
||||
struct __gconv_step_data *next_data = data + 1;
|
||||
__gconv_fct fct = next_step->__fct;
|
||||
__gconv_fct fct = data->is_last ? NULL : next_step->__fct;
|
||||
int status;
|
||||
|
||||
/* If the function is called with no input this means we have to reset
|
||||
|
Reference in New Issue
Block a user