diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-04 06:44:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-04 06:44:28 -0700 |
commit | 9a7f2d51807c182c7cb7e554c3be109ccd066ad8 (patch) | |
tree | c641a65025a31bffe8eff8d43d82b88c56a1adf6 /tests/012 | |
parent | e1666e62bc27c89a6ff529c308eacbad9d132e31 (diff) | |
download | txr-9a7f2d51807c182c7cb7e554c3be109ccd066ad8.tar.gz txr-9a7f2d51807c182c7cb7e554c3be109ccd066ad8.tar.bz2 txr-9a7f2d51807c182c7cb7e554c3be109ccd066ad8.zip |
buf: bugfix: int-buf, uint-buf refer to alloc size.
* buf.c (int_buf, uint_buf): Refer to the buffer length b->len
rather than the underlying allocation size b->size.
Referring to b->size will not only produce the wrong value
when it is larger than len, but b->size can be null for a
borrowed buffer, producing a crash.
* tests/012/buf.tl: Tests.
Diffstat (limited to 'tests/012')
-rw-r--r-- | tests/012/buf.tl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/012/buf.tl b/tests/012/buf.tl new file mode 100644 index 00000000..1c8040d6 --- /dev/null +++ b/tests/012/buf.tl @@ -0,0 +1,4 @@ +(load "../common") + +(vtest (uint-buf (make-buf 8 255 16)) (pred (expt 2 64))) +(test (int-buf (make-buf 8 255 16)) -1) |