Avoid leaving an extra item in the stack when getThis() is used

This commit is contained in:
David Capello 2016-04-06 17:18:54 -03:00
parent de8ef623a6
commit 5bd2a01446

View File

@ -397,7 +397,7 @@ void* Context::getThis()
duk_push_this(m_handle);
duk_get_prop_string(m_handle, -1, "\xFF" "\xFF" "ptr");
void* result = (void*)duk_to_pointer(m_handle, -1);
duk_pop(m_handle);
duk_pop_2(m_handle);
return result;
}