Fix crash in ApiEvents::CheckResultAPIHandler

fixes #7577
This commit is contained in:
Gunnar Beutner 2014-11-05 09:58:43 +01:00
parent ad14ff6d6b
commit 18d317faf9
1 changed files with 11 additions and 9 deletions

View File

@ -144,6 +144,7 @@ Value ApiEvents::CheckResultAPIHandler(const MessageOrigin& origin, const Dictio
Array::Ptr rperf = make_shared<Array>();
if (vperf) {
ObjectLock olock(vperf);
BOOST_FOREACH(const Value& vp, vperf) {
Value p;
@ -155,6 +156,7 @@ Value ApiEvents::CheckResultAPIHandler(const MessageOrigin& origin, const Dictio
} else
rperf->Add(vp);
}
}
cr->SetPerformanceData(rperf);