Skip to content

Commit

Permalink
Merge pull request #31 from Aiven-Open/rdunklau/fix_compiler_warning
Browse files Browse the repository at this point in the history
SqlBody variable could have been used uninitialized.
  • Loading branch information
kathia-barahona authored Nov 6, 2024
2 parents 8717cda + 5aca75b commit 52f0916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aiven_gatekeeper.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ gatekeeper_checks(PROCESS_UTILITY_PARAMS)
char *funcLang;
int i;
bool checkBody;
char *sqlBody;
char *sqlBody = "";
char *result;

/* if the agent is disabled, skip all checks */
Expand Down

0 comments on commit 52f0916

Please sign in to comment.