Skip to content

Commit

Permalink
Remove compliation warning of unitialized value
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Seleznev authored and Pavel Seleznev committed Jul 31, 2024
1 parent d63fd39 commit 96e759d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pgut/pgut-spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ execute_with_args(int expected, const char *src, int nargs, Oid argtypes[], Datu
{
int ret;
int i;
char c_nulls[FUNC_MAX_ARGS];
char c_nulls[FUNC_MAX_ARGS] = {0};

memset(c_nulls, 0, sizeof(c_nulls));

Expand Down

0 comments on commit 96e759d

Please sign in to comment.