From: Andres Freund Date: Sun, 4 Jan 2015 14:35:47 +0000 (+0100) Subject: Add missing va_end() call to a early exit in dmetaphone.c's StringAt(). X-Git-Tag: REL9_2_10~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=029e41afd2930bfabbbc6a1b7d3bf7b21455f150;p=thirdparty%2Fpostgresql.git Add missing va_end() call to a early exit in dmetaphone.c's StringAt(). Pointed out by Coverity. Backpatch to all supported branches, the code has been that way for a long while. --- diff --git a/contrib/fuzzystrmatch/dmetaphone.c b/contrib/fuzzystrmatch/dmetaphone.c index f562f5484cc..a415bbb292f 100644 --- a/contrib/fuzzystrmatch/dmetaphone.c +++ b/contrib/fuzzystrmatch/dmetaphone.c @@ -362,7 +362,10 @@ StringAt(metastring *s, int start, int length,...) { test = va_arg(ap, char *); if (*test && (strncmp(pos, test, length) == 0)) + { + va_end(ap); return 1; + } } while (strcmp(test, "") != 0);