From: Tom Lane Date: Thu, 14 May 2015 16:16:06 +0000 (-0400) Subject: Suppress uninitialized-variable warning. X-Git-Tag: REL9_5_ALPHA1~265 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6c9e93d3ffbf99435636103ad69d6469c64e2aef;p=thirdparty%2Fpostgresql.git Suppress uninitialized-variable warning. --- diff --git a/contrib/pg_audit/pg_audit.c b/contrib/pg_audit/pg_audit.c index 558a96a471a..60f668ca017 100644 --- a/contrib/pg_audit/pg_audit.c +++ b/contrib/pg_audit/pg_audit.c @@ -1284,7 +1284,7 @@ pg_audit_ProcessUtility_hook(Node *parsetree, char *completionTag) { AuditEventStackItem *stackItem = NULL; - int64 stackId; + int64 stackId = 0; /* * Don't audit substatements. All the substatements we care about should