Attempt to suppress uninitialized variable warning.

Report by Heikki Linnakangas.
This commit is contained in:
Robert Haas 2014-11-25 20:07:07 -05:00
parent b7a715800a
commit a6c84c770e
1 changed files with 1 additions and 1 deletions

View File

@ -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;