From: Jo-Philipp Wich Date: Thu, 18 Mar 2010 15:19:11 +0000 (+0000) Subject: libs/core: disable runtime byte code stripping, it causes lvm errors (OpenWrt #6235... X-Git-Tag: 0.10.0~821 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2fede7361f53c3e1e81974676565ccf3937c23a9;p=oweals%2Fluci.git libs/core: disable runtime byte code stripping, it causes lvm errors (OpenWrt #6235, LuCI #110) --- diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index 84c63f240..f45a1f966 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -525,7 +525,7 @@ function get_bytecode(val) code = string.dump( loadstring( "return " .. serialize_data(val) ) ) end - return code and strip_bytecode(code) + return code -- and strip_bytecode(code) end --- Strips unnescessary lua bytecode from given string. Information like line