ruby-changes:56125
From: Nobuyoshi <ko1@a...>
Date: Sun, 16 Jun 2019 23:52:25 +0900 (JST)
Subject: [ruby-changes:56125] Nobuyoshi Nakada: 53e9908d8a (trunk): Fix memory leak
https://git.ruby-lang.org/ruby.git/commit/?id=53e9908d8a From 53e9908d8afc7f03109b0aafd1698ab35f512b05 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sun, 16 Jun 2019 23:41:06 +0900 Subject: Fix memory leak * string.c (str_replace_shared_without_enc): free previous buffer before replaced. * parse.y (gettable): make sure in advance that the `__FILE__` object shares a fstring, to get rid of replacement with the fstring later. TODO: this hack may be needed in other places. [Bug #15916] Co-Authored-By: luke-gru (Luke Gruber) <luke.gru@g...> diff --git a/parse.y b/parse.y index a7cdddc..d76d3b2 100644 --- a/parse.y +++ b/parse.y @@ -9748,7 +9748,7 @@ gettable(struct parser_params *p, ID id, const YYLTYPE *loc) https://github.com/ruby/ruby/blob/trunk/parse.y#L9748 if (NIL_P(file)) file = rb_str_new(0, 0); else - file = rb_str_dup(file); + file = rb_str_dup(rb_fstring(file)); node = NEW_STR(add_mark_object(p, file), loc); } return node; diff --git a/string.c b/string.c index b37b854..186c71b 100644 --- a/string.c +++ b/string.c @@ -1162,6 +1162,13 @@ str_replace_shared_without_enc(VALUE str2, VALUE str) https://github.com/ruby/ruby/blob/trunk/string.c#L1162 } else { str = rb_str_new_frozen(str); + if (!STR_EMBED_P(str2) && !FL_TEST_RAW(str2, STR_SHARED|STR_NOFREE)) { + /* TODO: check if str2 is a shared root */ + char *ptr2 = STR_HEAP_PTR(str2); + if (STR_HEAP_PTR(str) != ptr2) { + ruby_sized_xfree(ptr2, STR_HEAP_SIZE(str2)); + } + } FL_SET(str2, STR_NOEMBED); RSTRING_GETMEM(str, ptr, len); RSTRING(str2)->as.heap.len = len; -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/