diff options
-rw-r--r-- | slicer/db/sqlSelectDeserializer.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/slicer/db/sqlSelectDeserializer.cpp b/slicer/db/sqlSelectDeserializer.cpp index ba5f944..5c46e11 100644 --- a/slicer/db/sqlSelectDeserializer.cpp +++ b/slicer/db/sqlSelectDeserializer.cpp @@ -91,12 +91,12 @@ namespace Slicer { for (auto col = 0u; col < columnCount; col += 1) { const DB::Column & c = cmd[col]; SqlSourcePtr h = new SqlSource(c); - auto fmpr = rmp->GetAnonChildRef([&c](Slicer::HookCommonPtr h) { - return boost::iequals(c.name.raw(), h->PartName()); - }); - if (fmpr) { - auto fmp = fmpr->Child(); - if (!h->isNull()) { + if (!h->isNull()) { + auto fmpr = rmp->GetAnonChildRef([&c](Slicer::HookCommonPtr h) { + return boost::iequals(c.name.raw(), h->PartName()); + }); + if (fmpr) { + auto fmp = fmpr->Child(); fmp->Create(); fmp->SetValue(h); fmp->Complete(); |