Fix incorrect return value for ConfigItem::ActivateItems

refs #8309
This commit is contained in:
Gunnar Beutner 2015-01-29 14:40:49 +01:00
parent 2f44581f14
commit d713a6c940
1 changed files with 5 additions and 1 deletions

View File

@ -381,7 +381,11 @@ bool ConfigItem::ActivateItems(void)
}
upq.Join();
upq.ReportExceptions("ConfigItem");
if (upq.HasExceptions()) {
upq.ReportExceptions("ConfigItem");
return false;
}
#ifdef I2_DEBUG
BOOST_FOREACH(const DynamicType::Ptr& type, DynamicType::GetTypes()) {