mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.0.1047: buffer overflow in Ruby
Problem: Buffer overflow in Ruby. Solution: Allocate one more byte. (Dominique Pelle)
This commit is contained in:
parent
ae96b8d058
commit
00ccf54630
@ -984,7 +984,7 @@ static VALUE vim_message(VALUE self UNUSED, VALUE str)
|
||||
if (RSTRING_LEN(str) > 0)
|
||||
{
|
||||
/* Only do this when the string isn't empty, alloc(0) causes trouble. */
|
||||
buff = ALLOCA_N(char, RSTRING_LEN(str));
|
||||
buff = ALLOCA_N(char, RSTRING_LEN(str) + 1);
|
||||
strcpy(buff, RSTRING_PTR(str));
|
||||
p = strchr(buff, '\n');
|
||||
if (p) *p = '\0';
|
||||
|
@ -769,6 +769,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1047,
|
||||
/**/
|
||||
1046,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user