aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/memfile.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2021-12-31 14:22:35 +0100
committerDundar Göc <gocdundar@gmail.com>2021-12-31 14:45:03 +0100
commitdb7fe34017c8ddf360ab7a90d6d1830071f3d1fc (patch)
tree511843f3db23b2c9d5fedbdb9f2b78cf571a7bd9 /src/nvim/memfile.c
parent991e872d800dbd983d57e4768734cefb13503ee7 (diff)
downloadrneovim-db7fe34017c8ddf360ab7a90d6d1830071f3d1fc.tar.gz
rneovim-db7fe34017c8ddf360ab7a90d6d1830071f3d1fc.tar.bz2
rneovim-db7fe34017c8ddf360ab7a90d6d1830071f3d1fc.zip
refactor: avoid overflow by explicitly casting operand to a wider type
Diffstat (limited to 'src/nvim/memfile.c')
-rw-r--r--src/nvim/memfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/memfile.c b/src/nvim/memfile.c
index 3397296b3a..bea92e5082 100644
--- a/src/nvim/memfile.c
+++ b/src/nvim/memfile.c
@@ -247,7 +247,7 @@ bhdr_T *mf_new(memfile_T *mfp, bool negative, unsigned page_count)
} else { // need to allocate memory for this block
// If the number of pages matches use the bhdr_T from the free list and
// allocate the data.
- void *p = xmalloc(mfp->mf_page_size * page_count);
+ void *p = xmalloc((size_t)mfp->mf_page_size * page_count);
hp = mf_rem_free(mfp);
hp->bh_data = p;
}
@@ -269,7 +269,7 @@ bhdr_T *mf_new(memfile_T *mfp, bool negative, unsigned page_count)
// Init the data to all zero, to avoid reading uninitialized data.
// This also avoids that the passwd file ends up in the swap file!
- (void)memset(hp->bh_data, 0, mfp->mf_page_size * page_count);
+ (void)memset(hp->bh_data, 0, (unsigned long)mfp->mf_page_size * page_count);
return hp;
}
@@ -528,7 +528,7 @@ bool mf_release_all(void)
static bhdr_T *mf_alloc_bhdr(memfile_T *mfp, unsigned page_count)
{
bhdr_T *hp = xmalloc(sizeof(bhdr_T));
- hp->bh_data = xmalloc(mfp->mf_page_size * page_count);
+ hp->bh_data = xmalloc((size_t)mfp->mf_page_size * page_count);
hp->bh_page_count = page_count;
return hp;
}