1
0

Merge pull request #3548 from cuberite/FixAssertInWebadmin

Webadmin: Added a missing CS lock.
This commit is contained in:
Lukas Pioch 2017-01-18 17:29:00 +01:00 committed by GitHub
commit 7f14faf831

View File

@ -341,6 +341,7 @@ void cWebAdmin::HandleWebadminRequest(cHTTPServerConnection & a_Connection, cHTT
if (ShouldWrapInTemplate)
{
cCSLock Lock(m_CS);
cLuaState::cLock lock(m_TemplateScript);
if (m_TemplateScript.Call("ShowPage", this, &TemplateRequest, cLuaState::Return, Template))
{
cHTTPOutgoingResponse Resp;