mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
Script: Fix memory corruption caused by 6560518
This commit is contained in:
parent
6560518037
commit
f8c386793a
@ -161,10 +161,13 @@ void MeasureScript::ReadOptions(ConfigParser& parser, const WCHAR* section)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Pop PROPERTIES table.
|
||||
lua_pop(L, 1);
|
||||
}
|
||||
|
||||
// Pop PROPERTIES table and our table
|
||||
lua_pop(L, 2);
|
||||
// Pop our table.
|
||||
lua_pop(L, 1);
|
||||
|
||||
if (m_Initialized)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user