From 56db1f25dad16ff4a3531149bc9271360e444de2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marek=20Vavru=C5=A1a?= <marek.vavrusa@nic.cz>
Date: Tue, 17 Nov 2015 21:43:38 +0100
Subject: [PATCH] lib: initialize null qsource for resolver-initiated queries

fixes #41
---
 daemon/lua/sandbox.lua | 2 +-
 lib/resolve.c          | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/daemon/lua/sandbox.lua b/daemon/lua/sandbox.lua
index 2577c17ce..4e736d7d7 100644
--- a/daemon/lua/sandbox.lua
+++ b/daemon/lua/sandbox.lua
@@ -55,7 +55,7 @@ setmetatable(modules, {
 			k = string.match(k, '%w+')
 			local mod = _G[k]
 			local config = rawget(mod, 'config')
-			if mod and config then
+			if mod ~= nil and config ~= nil then
 				if k ~= v then config(v)
 				else           config()
 				end
diff --git a/lib/resolve.c b/lib/resolve.c
index 2340c4f9d..51cb4f25c 100644
--- a/lib/resolve.c
+++ b/lib/resolve.c
@@ -350,6 +350,8 @@ int kr_resolve_begin(struct kr_request *request, struct kr_context *ctx, knot_pk
 	request->options = ctx->options;
 	request->state = KNOT_STATE_CONSUME;
 	request->current_query = NULL;
+	request->qsource.key = NULL;
+	request->qsource.addr = NULL;
 	array_init(request->authority);
 	array_init(request->additional);
 
-- 
GitLab