net.dns: Don't attempt to cache unparsed data (fixes #1056)

rr[qtype:lower()] can be nil. I think this happens if the type does not
have a parser.

Also see #819 #976
This commit is contained in:
Kim Alvefur 2018-06-09 15:35:03 +02:00
parent d8100c6004
commit fb63de9331

View file

@ -672,7 +672,7 @@ function resolver:remember(rr, type) -- - - - - - - - - - - - - - remember
self.cache = self.cache or setmetatable({}, cache_metatable);
local rrs = get(self.cache, qclass, type, qname) or
set(self.cache, qclass, type, qname, setmetatable({}, rrs_metatable));
if not rrs[rr[qtype:lower()]] then
if rr[qtype:lower()] and not rrs[rr[qtype:lower()]] then
rrs[rr[qtype:lower()]] = true;
append(rrs, rr);
end