Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6c9e93d

Browse files
committed
Suppress uninitialized-variable warning.
1 parent 1dc5ebc commit 6c9e93d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pg_audit/pg_audit.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ pg_audit_ProcessUtility_hook(Node *parsetree,
12841284
char *completionTag)
12851285
{
12861286
AuditEventStackItem *stackItem = NULL;
1287-
int64 stackId;
1287+
int64 stackId = 0;
12881288

12891289
/*
12901290
* Don't audit substatements. All the substatements we care about should

0 commit comments

Comments
 (0)