]> granicus.if.org Git - vim/commitdiff
patch 9.0.1096: reallocating hashtab when the size didn't change v9.0.1096
authorBram Moolenaar <Bram@vim.org>
Sun, 25 Dec 2022 20:46:13 +0000 (20:46 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 25 Dec 2022 20:46:13 +0000 (20:46 +0000)
Problem:    Reallocating hashtab when the size didn't change.
Solution:   Bail out when the hashtab is already the desired size.

src/hashtab.c
src/version.c

index db76fde35f928c48e0c539a8ade6dc6eaf1d13b9..0c1aca2c5b763d41090594ae3f0d87244f5d3cb0 100644 (file)
@@ -405,6 +405,10 @@ 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.
index 36d3f81ff8c4dee7b3c53c83d2be76f7036590ef..deaee335668544aedc5491e6c944c2515a41a136 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1096,
 /**/
     1095,
 /**/