diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-05-14 12:16:06 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-05-14 12:16:06 -0400 |
commit | 6c9e93d3ffbf99435636103ad69d6469c64e2aef (patch) | |
tree | 1e32c909cf4e1ce4d3d739a76cdb61e404105f35 | |
parent | 1dc5ebc9077ab742079ce5dac9a6664248d42916 (diff) | |
download | postgresql-6c9e93d3ffbf99435636103ad69d6469c64e2aef.tar.gz postgresql-6c9e93d3ffbf99435636103ad69d6469c64e2aef.zip |
Suppress uninitialized-variable warning.
-rw-r--r-- | contrib/pg_audit/pg_audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |