diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-04 06:47:24 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-04 06:47:24 -0700 |
commit | 0c07bd4a499379c47916ce7cbf8d03af79e3aa98 (patch) | |
tree | 93f223db2e75262e024e2f84012241a67ec5211b /tests/018 | |
parent | 9a7f2d51807c182c7cb7e554c3be109ccd066ad8 (diff) | |
download | txr-0c07bd4a499379c47916ce7cbf8d03af79e3aa98.tar.gz txr-0c07bd4a499379c47916ce7cbf8d03af79e3aa98.tar.bz2 txr-0c07bd4a499379c47916ce7cbf8d03af79e3aa98.zip |
sha256/md5: leak: don't use borrowed buffer for hash.
It's incorrect to use a borrowed buf, because a borrowed buf
assumes that the memory isn't dynamically allocated, and will
not free it when it is finalized by the garbage collector.
The buffer which holds the hash returned by sha256 and md5
does in fact own the memory.
* buf.c (make_owned_buf): Static function becomes external.
* buf.h (make_owned_buf): Declared.
* chksum.c (chksum_ensure_buf): Use make_owned_buf rather than
make_borrowed_buf.
Diffstat (limited to 'tests/018')
0 files changed, 0 insertions, 0 deletions