mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 02:22:26 +01:00
minetest.deserialize: Throw error when argument not string (#5738)
This commit is contained in:
@ -186,6 +186,10 @@ local safe_env = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function core.deserialize(str, safe)
|
function core.deserialize(str, safe)
|
||||||
|
if type(str) ~= "string" then
|
||||||
|
return nil, "Cannot deserialize type '"..type(str)
|
||||||
|
.."'. Argument must be a string."
|
||||||
|
end
|
||||||
if str:byte(1) == 0x1B then
|
if str:byte(1) == 0x1B then
|
||||||
return nil, "Bytecode prohibited"
|
return nil, "Bytecode prohibited"
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user