commit 3b11b66e8c27fd0506c43b254fc8056bac3d5be7
Author: dprunier <dominique.prunier@watch4net.com>
Date:   Fri Jan 13 10:16:24 2012

    missing initialization in bundle1 was generating a segmentation fault

diff --git a/src/bundle.cpp b/src/bundle.cpp
index e6d4cba..2aa49d8 100755
--- a/src/bundle.cpp
+++ b/src/bundle.cpp
@@ -355,7 +355,7 @@ void ibis::bundle0::printAll(std::ostream& out) const {
 /// Constructor.  It attempt to read to read a bundle from files first.  If
 /// that fails, it attempts to create a bundle based on the current hits.
 ibis::bundle1::bundle1(const ibis::query& q)
-    : bundle(q), aggr(comps.getAggregator(0)) {
+    : bundle(q), aggr(comps.getAggregator(0)), col(0) {
     if (q.getNumHits() == 0)
 	return;
 
