Fix for invalid use of assign() in new rdcstr interface

* This will go away with the serialise refactor, but is currently broken
This commit is contained in:
baldurk
2017-11-06 13:53:41 +00:00
parent 2c2270051c
commit 594c8ccae6
+1 -1
View File
@@ -523,7 +523,7 @@ public:
}
else
{
el.assign(NULL, sz);
el.resize((size_t)sz);
for(int32_t i = 0; i < sz; i++)
Serialise("", el[i]);
}