mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
d8100c6004
commit
fb63de9331
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue