summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index bfeefef432..125180b925 100644
--- a/io.c
+++ b/io.c
@@ -1556,7 +1556,7 @@ read_all(rb_io_t *fptr, long siz, VALUE str)
int cr;
if (NEED_READCONV(fptr)) {
- VALUE str = rb_str_new(NULL, 0);
+ if (!NIL_P(str)) rb_str_set_len(str, 0);
make_readconv(fptr);
while (1) {
if (fptr->cbuf_len) {