summaryrefslogtreecommitdiff
path: root/src/hashtab.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-11-28 18:31:54 +0100
committerBram Moolenaar <Bram@vim.org>2012-11-28 18:31:54 +0100
commit97d4ea71d613ab69c25851950f9299687a80da01 (patch)
treee77ff0bfc7f9c8fda11fc6148e995872aae883dc /src/hashtab.c
parentf4f1956724f70a7def3bcf8a2d77cf1f8c9dd28c (diff)
downloadvim-git-97d4ea71d613ab69c25851950f9299687a80da01.tar.gz
updated for version 7.3.740v7.3.740
Problem: IOC tool complains about undefined behavior for int. Solution: Change to unsigned int. (Dominique Pelle)
Diffstat (limited to 'src/hashtab.c')
-rw-r--r--src/hashtab.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/hashtab.c b/src/hashtab.c
index 8b53aa401..a47fa94b2 100644
--- a/src/hashtab.c
+++ b/src/hashtab.c
@@ -138,7 +138,7 @@ hash_lookup(ht, key, hash)
hash_T perturb;
hashitem_T *freeitem;
hashitem_T *hi;
- int idx;
+ unsigned idx;
#ifdef HT_DEBUG
++hash_count_lookup;
@@ -150,7 +150,7 @@ hash_lookup(ht, key, hash)
* - skip over a removed item
* - return if the item matches
*/
- idx = (int)(hash & ht->ht_mask);
+ idx = (unsigned)(hash & ht->ht_mask);
hi = &ht->ht_array[idx];
if (hi->hi_key == NULL)
@@ -176,7 +176,7 @@ hash_lookup(ht, key, hash)
#ifdef HT_DEBUG
++hash_count_perturb; /* count a "miss" for hashtab lookup */
#endif
- idx = (int)((idx << 2) + idx + perturb + 1);
+ idx = (unsigned)((idx << 2U) + idx + perturb + 1U);
hi = &ht->ht_array[idx & ht->ht_mask];
if (hi->hi_key == NULL)
return freeitem == NULL ? hi : freeitem;
@@ -342,7 +342,7 @@ hash_may_resize(ht, minitems)
hashitem_T temparray[HT_INIT_SIZE];
hashitem_T *oldarray, *newarray;
hashitem_T *olditem, *newitem;
- int newi;
+ unsigned newi;
int todo;
long_u oldsize, newsize;
long_u minsize;
@@ -448,13 +448,13 @@ hash_may_resize(ht, minitems)
* the algorithm to find an item in hash_lookup(). But we only
* need to search for a NULL key, thus it's simpler.
*/
- newi = (int)(olditem->hi_hash & newmask);
+ newi = (unsigned)(olditem->hi_hash & newmask);
newitem = &newarray[newi];
if (newitem->hi_key != NULL)
for (perturb = olditem->hi_hash; ; perturb >>= PERTURB_SHIFT)
{
- newi = (int)((newi << 2) + newi + perturb + 1);
+ newi = (unsigned)((newi << 2U) + newi + perturb + 1U);
newitem = &newarray[newi & newmask];
if (newitem->hi_key == NULL)
break;