summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-06-17 00:05:19 +0000
committerrandomdan <randomdan@localhost>2011-06-17 00:05:19 +0000
commit7442e033db05d4fc42064d8c47df8ec91dec7017 (patch)
treeca5ac1fc6ded4b7ab683d3de05fc66972836b212
parentAllow callbacks into any component loader type (diff)
downloadproject2-7442e033db05d4fc42064d8c47df8ec91dec7017.tar.bz2
project2-7442e033db05d4fc42064d8c47df8ec91dec7017.tar.xz
project2-7442e033db05d4fc42064d8c47df8ec91dec7017.zip
Fix missing default assignment in xslRows
-rw-r--r--project2/xslRows.cpp3
1 files changed, 3 insertions, 0 deletions
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;