From 7442e033db05d4fc42064d8c47df8ec91dec7017 Mon Sep 17 00:00:00 2001 From: randomdan Date: Fri, 17 Jun 2011 00:05:19 +0000 Subject: Fix missing default assignment in xslRows --- project2/xslRows.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project2/xslRows.cpp b/project2/xslRows.cpp index 7a46fae..53ba7a2 100644 --- a/project2/xslRows.cpp +++ b/project2/xslRows.cpp @@ -147,6 +147,9 @@ XslRows::execute(const RowProcessor * rp) const } values[xp.first] = str; } + else { + values[xp.first] = Null(); + } } rp->rowReady(); rowNum += 1; -- cgit v1.2.3