From: John Darrington Date: Tue, 21 May 2019 13:46:51 +0000 (+0200) Subject: src/math/levene.c: Fix crash resolving hmap collisions. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd4e9badbdbfe798239f8741ad278d98073f2300;p=pspp src/math/levene.c: Fix crash resolving hmap collisions. Partial fix for bug #56363 --- diff --git a/src/math/levene.c b/src/math/levene.c index 0175ceb70d..89f6356280 100644 --- a/src/math/levene.c +++ b/src/math/levene.c @@ -110,7 +110,6 @@ find_group (const struct levene *nl, const union value *target) { if (nl->cmp (nl, &l->group, target)) break; - l = NULL; } return l; }