From 4208227693ad9cd65d9095c4db5c21cea166e5f8 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Wed, 16 Sep 2015 12:01:08 +0300 Subject: [PATCH] Initialize d_fnum, fixes cid#1324500 --- modules/gpgsqlbackend/spgsql.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gpgsqlbackend/spgsql.cc b/modules/gpgsqlbackend/spgsql.cc index 4a065619cd..701a2c4f97 100644 --- a/modules/gpgsqlbackend/spgsql.cc +++ b/modules/gpgsqlbackend/spgsql.cc @@ -37,7 +37,7 @@ public: throw SSqlException("Fatal error during prepare: " + d_query + string(": ") + errmsg); } paramValues=NULL; - d_cur_set=0;d_paridx=d_residx=d_resnum=0; + d_cur_set=d_paridx=d_residx=d_resnum=d_fnum=0; paramLengths=NULL; d_res=NULL; d_res_set=NULL; -- 2.47.2