From 3e08175002273b883931ee3950c35ca30de0aec6 Mon Sep 17 00:00:00 2001 From: kishoramballi Date: Thu, 1 May 2008 13:56:39 +0000 Subject: [PATCH] bIter was not initialized in constructor. bIter = NULL; is added for constructor in this version --- include/TableImpl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/TableImpl.h b/include/TableImpl.h index 247831bd..6029da99 100644 --- a/include/TableImpl.h +++ b/include/TableImpl.h @@ -49,7 +49,7 @@ class TupleIterator public: TupleIterator(Predicate *p, ScanType t, IndexInfo *i, void *cptr, int pslot) - { pred_ = p ; scanType_ = t; info = i; chunkPtr_ = cptr; procSlot =pslot;} + { bIter = NULL; pred_ = p ; scanType_ = t; info = i; chunkPtr_ = cptr; procSlot =pslot;} ~TupleIterator() { -- 2.11.4.GIT