mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 9.0.1271: using sizeof() and subtract array size is tricky
Problem: Using sizeof() and subtract array size is tricky. Solution: Use offsetof() instead. (closes #11926)
This commit is contained in:
@@ -2739,7 +2739,7 @@ store_sb_text(
|
||||
|
||||
if (s > *sb_str)
|
||||
{
|
||||
mp = alloc(sizeof(msgchunk_T) + (s - *sb_str));
|
||||
mp = alloc(offsetof(msgchunk_T, sb_text) + (s - *sb_str) + 1);
|
||||
if (mp != NULL)
|
||||
{
|
||||
mp->sb_eol = finish;
|
||||
|
Reference in New Issue
Block a user