Suppress uninitialized-variable warning.

pull/14/head
Tom Lane 10 years ago
parent 1dc5ebc907
commit 6c9e93d3ff
  1. 2
      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

Loading…
Cancel
Save