mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-08 15:57:29 +08:00
Attempt to suppress uninitialized variable warning.
Report by Heikki Linnakangas.
This commit is contained in:
@ -8503,7 +8503,7 @@ static Size
|
||||
estimate_variable_size(struct config_generic * gconf)
|
||||
{
|
||||
Size size;
|
||||
Size valsize;
|
||||
Size valsize = 0;
|
||||
|
||||
if (can_skip_gucvar(gconf))
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user