]> git.ipfire.org Git - people/ms/dnsmasq.git/commitdiff
bug fix, avoids infinite loop in forwarding code.
authorSimon Kelley <simon@thekelleys.org.uk>
Tue, 21 Jan 2014 17:33:58 +0000 (17:33 +0000)
committerSimon Kelley <simon@thekelleys.org.uk>
Tue, 21 Jan 2014 17:33:58 +0000 (17:33 +0000)
src/forward.c

index 7ed6f21568f34fae7f6aaa783db9eee1a2137ced..31bb7bf788d77e0d9d22cbd79d4b945c2ad4125f 100644 (file)
@@ -1596,7 +1596,7 @@ static void free_frec(struct frec *f)
   if (f->blocking_query)
     free_frec(f->blocking_query);
   f->blocking_query = NULL;
-  
+  f->dependent = NULL;
 #endif
 }