summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-10-30 19:21:30 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-10-30 19:21:30 -0700
commit484dd64d138a1ae977af05193036d3fe46220b2c (patch)
treead44f4b6c274f26cca5a7d20b51fdc05028c56ae /stream.c
parent0580d0373fc9b9b6a84cfb5749257b095e610e73 (diff)
downloadtxr-484dd64d138a1ae977af05193036d3fe46220b2c.tar.gz
txr-484dd64d138a1ae977af05193036d3fe46220b2c.tar.bz2
txr-484dd64d138a1ae977af05193036d3fe46220b2c.zip
* lib.c (chk_grow_vec): New function.
(string_extend): Use chk_grow_vec. (vec_set_length): Avoid subtractions for comparing numbers. * lib.h (chk_grow_vec): Declared. * stream.c (snarf_line, string_out_put_string): Use chk_grow_vec.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/stream.c b/stream.c
index 0d9ff3bb..fa274c51 100644
--- a/stream.c
+++ b/stream.c
@@ -313,8 +313,8 @@ static wchar_t *snarf_line(struct stdio_handle *h)
if (fill >= size) {
size_t newsize = size ? size * 2 : min_size;
- buf = coerce(wchar_t *, chk_realloc(coerce(mem_t *, buf),
- newsize * sizeof *buf));
+ buf = coerce(wchar_t *, chk_grow_vec(coerce(mem_t *, buf),
+ size, newsize, sizeof *buf));
size = newsize;
}
@@ -325,6 +325,7 @@ static wchar_t *snarf_line(struct stdio_handle *h)
buf[fill++] = ch;
}
+ /* Trim to actual size */
if (buf)
buf = coerce(wchar_t *, chk_realloc(coerce(mem_t *, buf),
fill * sizeof *buf));
@@ -943,8 +944,9 @@ static val string_out_put_string(val stream, val str)
}
if (so->size != old_size)
- so->buf = coerce(wchar_t *, chk_realloc(coerce(mem_t *, so->buf),
- so->size * sizeof *so->buf));
+ so->buf = coerce(wchar_t *, chk_grow_vec(coerce(mem_t *, so->buf),
+ old_size, so->size,
+ sizeof *so->buf));
wmemcpy(so->buf + so->fill, s, len + 1);
so->fill += len;
return t;
@@ -1238,6 +1240,7 @@ val get_string_from_stream(val stream)
stream->co.handle = 0;
+ /* Trim to actual size */
so->buf = coerce(wchar_t *, chk_realloc(coerce(mem_t *, so->buf),
(so->fill + 1) * sizeof *so->buf));
out = string_own(so->buf);