Commit a6c84c77 authored by Robert Haas's avatar Robert Haas

Attempt to suppress uninitialized variable warning.

Report by Heikki Linnakangas.
parent b7a71580
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment