libs/core: disable runtime byte code stripping, it causes lvm errors (OpenWrt #6235, LuCI #110)

This commit is contained in:
Jo-Philipp Wich 2010-03-18 15:19:11 +00:00
parent 9a6d72238d
commit 2fede7361f

View file

@ -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