mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.1827: allocating more memory than needed for extended structs
Problem: Allocating more memory than needed for extended structs. Solution: Use offsetof() instead of sizeof(). (Dominique Pelle, closes #4786)
This commit is contained in:
@@ -1319,7 +1319,7 @@ bt_regcomp(char_u *expr, int re_flags)
|
||||
return NULL;
|
||||
|
||||
/* Allocate space. */
|
||||
r = alloc(sizeof(bt_regprog_T) + regsize);
|
||||
r = alloc(offsetof(bt_regprog_T, program) + regsize);
|
||||
if (r == NULL)
|
||||
return NULL;
|
||||
r->re_in_use = FALSE;
|
||||
|
Reference in New Issue
Block a user