Fixed Lua string return values.

Fixes #773.
master
madmaxoft 2014-03-12 14:11:28 +01:00
parent 0c15fdf7b0
commit 5d7df54e35
1 changed files with 0 additions and 4 deletions

View File

@ -742,10 +742,6 @@ void cLuaState::GetStackValue(int a_StackPos, AString & a_Value)
{ {
a_Value.assign(data, len); a_Value.assign(data, len);
} }
else
{
a_Value.clear();
}
} }