From 441613bf23533f272722d88b161328abe2a0993d Mon Sep 17 00:00:00 2001 From: pixel Date: Wed, 13 Aug 2008 09:39:54 +0000 Subject: Adding double-loading locks --- src/plugin-luahandle.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/plugin-luahandle.cc') diff --git a/src/plugin-luahandle.cc b/src/plugin-luahandle.cc index 7e6b675..05d9fa9 100644 --- a/src/plugin-luahandle.cc +++ b/src/plugin-luahandle.cc @@ -7,6 +7,9 @@ #endif static void _init_plugin(Lua * L) { + static bool done = false; + if (done) return; + done = true; LuaInput::pushconstruct(L); LuaOutput::pushconstruct(L); LuaBuffer::pushconstruct(L); -- cgit v1.2.3