aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-11-25 20:44:05 +0100
committerKim Alvefur <zash@zash.se>2019-11-25 20:44:05 +0100
commitb340e5e4628e2f5c136fe1f4300821d89ed4cb94 (patch)
tree603e11e382185e757035e937142d1c8e03c45e87 /util
parent10aa40227bc374f95d39bf1c03224c7302f33955 (diff)
downloadprosody-b340e5e4628e2f5c136fe1f4300821d89ed4cb94.tar.gz
prosody-b340e5e4628e2f5c136fe1f4300821d89ed4cb94.zip
util.stanza: Check that argument to reply is a stanza
Diffstat (limited to 'util')
-rw-r--r--util/stanza.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/util/stanza.lua b/util/stanza.lua
index 55c38c73..f46d5b30 100644
--- a/util/stanza.lua
+++ b/util/stanza.lua
@@ -434,6 +434,9 @@ local function iq(attr)
end
local function reply(orig)
+ if not is_stanza(orig) then
+ error("bad argument to reply: expected stanza, got "..type(orig));
+ end
return new_stanza(orig.name,
orig.attr and {
to = orig.attr.from,