From: Robert Haas Date: Tue, 7 Mar 2017 18:49:53 +0000 (-0500) Subject: Properly initialize variable. X-Git-Tag: REL_10_BETA1~743 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=506f05423a7c60eef8ed8b5430d03be1fec138a2;p=postgresql Properly initialize variable. Commit 3bc7dafa9bebbdaa1bbf0da0798d29a8bdaf6a8f forgot to do this. Noted while experimenting with valgrind. --- diff --git a/src/backend/optimizer/path/joinpath.c b/src/backend/optimizer/path/joinpath.c index 11f02dd8da..de7044de25 100644 --- a/src/backend/optimizer/path/joinpath.c +++ b/src/backend/optimizer/path/joinpath.c @@ -756,7 +756,7 @@ sort_inner_and_outer(PlannerInfo *root, JoinType save_jointype = jointype; Path *outer_path; Path *inner_path; - Path *cheapest_partial_outer; + Path *cheapest_partial_outer = NULL; Path *cheapest_safe_inner = NULL; List *all_pathkeys; ListCell *l;