Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb0c5da6

Browse files
committed
Suppress uninitialized-variable warning in new SCRAM code.
While we generally don't sweat too much about "may be used uninitialized"warnings from older compilers, I noticed that there's a fair number ofbuildfarm animals that are producing such a warning *only* for thisvariable. So it seems worth silencing.
1 parentdb72302 commitb0c5da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/libpq/auth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ CheckSCRAMAuth(Port *port, char *shadow_pass, char **logdetail)
865865
StringInfoDatasasl_mechs;
866866
intmtype;
867867
StringInfoDatabuf;
868-
void*scram_opaq;
868+
void*scram_opaq=NULL;
869869
char*output=NULL;
870870
intoutputlen=0;
871871
char*input;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp