diff options
Diffstat (limited to 'libcpp/charset.c')
-rw-r--r-- | libcpp/charset.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcpp/charset.c b/libcpp/charset.c index b766eec..1064f52 100644 --- a/libcpp/charset.c +++ b/libcpp/charset.c @@ -537,6 +537,7 @@ convert_no_conversion (iconv_t cd ATTRIBUTE_UNUSED, if (to->len + flen > to->asize) { to->asize = to->len + flen; + to->asize += to->asize / 4; to->text = XRESIZEVEC (uchar, to->text, to->asize); } memcpy (to->text + to->len, from, flen); |