mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
Eliminate direct setfenv usage
This commit is contained in:
parent
217e6d011c
commit
d49b9bc2ab
11 changed files with 52 additions and 54 deletions
|
@ -3,12 +3,12 @@
|
|||
-- This driver stores data as simple key-values
|
||||
|
||||
local ser = require "util.serialization".serialize;
|
||||
local envload = require "util.envload".envload;
|
||||
local deser = function(data)
|
||||
module:log("debug", "deser: %s", tostring(data));
|
||||
if not data then return nil; end
|
||||
local f = loadstring("return "..data);
|
||||
local f = envload("return "..data, nil, {});
|
||||
if not f then return nil; end
|
||||
setfenv(f, {});
|
||||
local s, d = pcall(f);
|
||||
if not s then return nil; end
|
||||
return d;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue