]> granicus.if.org Git - vim/commitdiff
patch 9.0.1097: tests are failing v9.0.1097
authorBram Moolenaar <Bram@vim.org>
Sun, 25 Dec 2022 21:32:09 +0000 (21:32 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 25 Dec 2022 21:32:09 +0000 (21:32 +0000)
Problem:    Tests are failing.
Solution:   Do clean up a hashtab when at the initial size.

src/hashtab.c
src/version.c

index 0c1aca2c5b763d41090594ae3f0d87244f5d3cb0..dc4ef8888b5a7486188fff39365e37b6ceeb1bbf 100644 (file)
@@ -405,10 +405,6 @@ hash_may_resize(
            return FAIL;        // overflow
     }
 
-    // bail out if the hashtab is already at the desired size
-    if (newsize == ht->ht_mask + 1)
-       return OK;
-
     if (newsize == HT_INIT_SIZE)
     {
        // Use the small array inside the hashdict structure.
@@ -425,6 +421,13 @@ hash_may_resize(
            oldarray = ht->ht_array;
        CLEAR_FIELD(ht->ht_smallarray);
     }
+
+    else if (newsize == ht->ht_mask + 1)
+    {
+       // the hashtab is already at the desired size, bail out
+       return OK;
+    }
+
     else
     {
        // Allocate an array.
index deaee335668544aedc5491e6c944c2515a41a136..94bcd5871d070e286141796d057b68e9497af1f5 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1097,
 /**/
     1096,
 /**/