[MOAB-dev] r4396 - MOAB/trunk/src
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Tue Dec 21 15:27:44 CST 2010
Author: kraftche
Date: 2010-12-21 15:27:44 -0600 (Tue, 21 Dec 2010)
New Revision: 4396
Modified:
MOAB/trunk/src/ScdInterface.cpp
Log:
fix use of uninitialized values
Modified: MOAB/trunk/src/ScdInterface.cpp
===================================================================
--- MOAB/trunk/src/ScdInterface.cpp 2010-12-21 19:50:05 UTC (rev 4395)
+++ MOAB/trunk/src/ScdInterface.cpp 2010-12-21 21:27:44 UTC (rev 4396)
@@ -16,7 +16,11 @@
{
ScdInterface::ScdInterface(Core *impl, bool boxes)
- : mbImpl(impl), searchedBoxes(false)
+ : mbImpl(impl),
+ searchedBoxes(false),
+ boxMinTag(0),
+ boxMaxTag(0),
+ boxSetTag(0)
{
if (boxes) find_boxes(scdBoxes);
}
More information about the moab-dev
mailing list