aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-10-11 18:53:15 +0200
committerKim Alvefur <zash@zash.se>2018-10-11 18:53:15 +0200
commitfda067d696e762609b0a78a9af6b1145597f3ddb (patch)
tree04a9e4412f232050d2d1cf6e8758d4db69326148 /net
parent9547e0e66d31ed8b3e3dcec7fb3c6ea96bda7ccc (diff)
downloadprosody-fda067d696e762609b0a78a9af6b1145597f3ddb.tar.gz
prosody-fda067d696e762609b0a78a9af6b1145597f3ddb.zip
net.server_epoll: Assert successful creation of util.poll handle
Diffstat (limited to 'net')
-rw-r--r--net/server_epoll.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_epoll.lua b/net/server_epoll.lua
index 4a3c4506..7a9bd7a3 100644
--- a/net/server_epoll.lua
+++ b/net/server_epoll.lua
@@ -25,7 +25,7 @@ local inet = require "util.net";
local inet_pton = inet.pton;
local _SOCKETINVALID = socket._SOCKETINVALID or -1;
-local poll = require "util.poll".new();
+local poll = assert(require "util.poll".new());
local _ENV = nil;
-- luacheck: std none