1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-19 22:53:53 +00:00

Fix exception for empty dialog topics (Fixes #2267)

This commit is contained in:
scrawl 2015-01-10 15:06:30 +01:00
parent 5b9d10f851
commit 37bea9d4dc

View file

@ -28,6 +28,8 @@ public:
void seed (string_t keyword, value_t value)
{
if (keyword.empty())
return;
seed_impl (/*std::move*/ (keyword), /*std::move*/ (value), 0, mRoot);
}