Skip to content

Commit

Permalink
Remove compliation warning of unitialized value (#413)
Browse files Browse the repository at this point in the history
Co-authored-by: Pavel Seleznev <PNSeleznev@sberbank.ru>
  • Loading branch information
SeleznevPavel and Pavel Seleznev authored Aug 2, 2024
1 parent d63fd39 commit a4b9b33
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 a4b9b33

Please sign in to comment.