From 649aeb123f73e69cf78c52b534c15c51a229d63d Mon Sep 17 00:00:00 2001 From: Michael Meskes Date: Sat, 13 Jan 2018 14:56:49 +0100 Subject: [PATCH] Cope with indicator arrays that do not have the correct length. Patch by: "Rader, David" --- src/interfaces/ecpg/preproc/type.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/interfaces/ecpg/preproc/type.c b/src/interfaces/ecpg/preproc/type.c index 4abbf93d19..fa1a05c302 100644 --- a/src/interfaces/ecpg/preproc/type.c +++ b/src/interfaces/ecpg/preproc/type.c @@ -609,7 +609,17 @@ ECPGdump_a_struct(FILE *o, const char *name, const char *ind_name, char *arrsize prefix, ind_prefix, arrsize, type->struct_sizeof, (ind_p != NULL) ? ind_type->struct_sizeof : NULL); if (ind_p != NULL && ind_p != &struct_no_indicator) + { ind_p = ind_p->next; + if (ind_p == NULL && p->next != NULL) { + mmerror(PARSE_ERROR, ET_WARNING, "indicator struct \"%s\" has too few members", ind_name); + ind_p = &struct_no_indicator; + } + } + } + + if (ind_type != NULL && ind_p != NULL && ind_p != &struct_no_indicator) { + mmerror(PARSE_ERROR, ET_WARNING, "indicator struct \"%s\" has too many members", ind_name); } free(pbuf);