mirror of https://github.com/Icinga/icinga2.git
parent
9b6ebbc69b
commit
21e34c7f05
|
@ -96,7 +96,9 @@ void *i2_new_frame(Tcl_Interp *interp)
|
||||||
Application::InitializeBase();
|
Application::InitializeBase();
|
||||||
}
|
}
|
||||||
|
|
||||||
return new ScriptFrame();
|
ScriptFrame *frame = new ScriptFrame();
|
||||||
|
frame->Self = ScriptGlobal::GetGlobals();
|
||||||
|
return frame;
|
||||||
}
|
}
|
||||||
|
|
||||||
void i2_free_frame(void *frame, Tcl_Interp *interp)
|
void i2_free_frame(void *frame, Tcl_Interp *interp)
|
||||||
|
|
Loading…
Reference in New Issue