Skip to content

Commit

Permalink
patch 8.0.1047: buffer overflow in Ruby
Browse files Browse the repository at this point in the history
Problem:    Buffer overflow in Ruby.
Solution:   Allocate one more byte. (Dominique Pelle)
  • Loading branch information
brammool committed Sep 3, 2017
1 parent ae96b8d commit 00ccf54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/if_ruby.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ static VALUE vim_message(VALUE self UNUSED, VALUE str)
if (RSTRING_LEN(str) > 0) if (RSTRING_LEN(str) > 0)
{ {
/* Only do this when the string isn't empty, alloc(0) causes trouble. */ /* 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)); strcpy(buff, RSTRING_PTR(str));
p = strchr(buff, '\n'); p = strchr(buff, '\n');
if (p) *p = '\0'; if (p) *p = '\0';
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -769,6 +769,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1047,
/**/ /**/
1046, 1046,
/**/ /**/
Expand Down

0 comments on commit 00ccf54

Please sign in to comment.