From 1e6c71f655d39345d6d2586656f30af9a222336f Mon Sep 17 00:00:00 2001 From: Jeff Bezanson Date: Tue, 22 Oct 2013 00:25:25 -0400 Subject: [PATCH] fix a use-after-free memory bug --- llt/htable.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/llt/htable.inc b/llt/htable.inc index 97b3ca2..dfac596 100644 --- a/llt/htable.inc +++ b/llt/htable.inc @@ -71,6 +71,7 @@ static void **HTNAME##_lookup_bp(htable_t *h, void *key) \ \ sz = hash_size(h); \ maxprobe = max_probe(sz); \ + tab = h->table; \ \ goto retry_bp; \ \