summaryrefslogtreecommitdiff
path: root/transcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'transcode.c')
-rw-r--r--transcode.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/transcode.c b/transcode.c
index f43131d6bc..4a810a1b42 100644
--- a/transcode.c
+++ b/transcode.c
@@ -1828,8 +1828,7 @@ rb_econv_substr_append(rb_econv_t *ec, VALUE src, long off, long len, VALUE dst,
else
max_output = 1;
- res = econv_destination_buffer_full;
- while (res == econv_destination_buffer_full) {
+ do {
long dlen = RSTRING_LEN(dst);
if (rb_str_capacity(dst) - dlen < (size_t)len + max_output) {
unsigned long new_capa = (unsigned long)dlen + len + max_output;
@@ -1848,7 +1847,7 @@ rb_econv_substr_append(rb_econv_t *ec, VALUE src, long off, long len, VALUE dst,
len -= sp - ss;
rb_str_set_len(dst, dlen + (dp - ds));
rb_econv_check_error(ec);
- }
+ } while (res == econv_destination_buffer_full);
RB_GC_GUARD(src);
return dst;