Commit 6c9e93d3 authored by Tom Lane's avatar Tom Lane

Suppress uninitialized-variable warning.

parent 1dc5ebc9
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment