src/math/levene.c: Fix crash resolving hmap collisions.
authorJohn Darrington <john@darrington.wattle.id.au>
Tue, 21 May 2019 13:46:51 +0000 (15:46 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Tue, 21 May 2019 13:46:51 +0000 (15:46 +0200)
Partial fix for bug #56363

src/math/levene.c

index 0175ceb70dae6c33f1ea1d64d7f0252b3295d8e0..89f635628029f3831fecbf5babd5115e6fc6e255 100644 (file)
@@ -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;
 }