From: Michael Beck Date: Thu, 20 Mar 2008 12:23:33 +0000 (+0000) Subject: missing return added X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f41748b58f7116ef41ac71e129e8de1b2df11d87;p=cparser missing return added [r19001] --- diff --git a/parser.c b/parser.c index 8393512..2577cb1 100644 --- a/parser.c +++ b/parser.c @@ -1069,6 +1069,7 @@ static gnu_attribute_t *allocate_gnu_attribute(gnu_attribute_kind_t kind) { attribute->next = NULL; attribute->invalid = false; attribute->have_arguments = false; + return attribute; } /**