diff options
| author | randomdan <randomdan@localhost> | 2011-06-17 00:05:19 +0000 | 
|---|---|---|
| committer | randomdan <randomdan@localhost> | 2011-06-17 00:05:19 +0000 | 
| commit | 7442e033db05d4fc42064d8c47df8ec91dec7017 (patch) | |
| tree | ca5ac1fc6ded4b7ab683d3de05fc66972836b212 | |
| parent | Allow callbacks into any component loader type (diff) | |
| download | project2-7442e033db05d4fc42064d8c47df8ec91dec7017.tar.bz2 project2-7442e033db05d4fc42064d8c47df8ec91dec7017.tar.xz project2-7442e033db05d4fc42064d8c47df8ec91dec7017.zip  | |
Fix missing default assignment in xslRows
| -rw-r--r-- | project2/xslRows.cpp | 3 | 
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;  | 
