1
0
Fork 0

Webadmin: Added a missing CS lock.

This fixes an assert when accessing the login-page and the plugin-failure pages in the webadmin.
This commit is contained in:
Mattes D 2017-01-18 16:30:28 +01:00
parent 0256daa7ca
commit 20205d33ba
1 changed files with 1 additions and 0 deletions

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;