From aaa8d85c286eace542b14f1030ace7f3cb20ab95 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 23 Nov 1999 17:31:31 +0000 Subject: Update. 1999-11-23 Thorsten Kukuk * iconv/skeleton.c: Don't access next_step->fct if datat->is_last is true. 1999-11-23 Andreas Jaeger * 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. --- iconv/skeleton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iconv/skeleton.c') diff --git a/iconv/skeleton.c b/iconv/skeleton.c index 0bcad9e6d0..3574fabea4 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -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 -- cgit 1.4.1