summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-06-10 17:14:09 -0700
committerKaz Kylheku <kaz@kylheku.com>2023-06-10 17:14:09 -0700
commit780590d1d2ca12a870987b620c4dafd77f55e8a3 (patch)
treecc75744126ae7a3dfaa7458aaebe37c7f8339d71
parent1b1e8f1da2d99a6c49c3949857c8bee8ef354d18 (diff)
downloadtxr-780590d1d2ca12a870987b620c4dafd77f55e8a3.tar.gz
txr-780590d1d2ca12a870987b620c4dafd77f55e8a3.tar.bz2
txr-780590d1d2ca12a870987b620c4dafd77f55e8a3.zip
lib: string bug spotted on Solaris.
* lib.c (string_finish): On platforms where we do not HAVE_MALLOC_USABLE_SIZE, there is a compiler diagnostic. The code is inappropriately using the set macro and mkloc to assign the st->st.alloc member, which is just a number (cnum type), and not a val. The set macro is only needed when mutating a gc heap object to point to another gc heap object.
-rw-r--r--lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 4ad63431..c52f9575 100644
--- a/lib.c
+++ b/lib.c
@@ -5230,7 +5230,7 @@ val string_finish(val str)
alloc = len + 1;
str->st.str = chk_wrealloc(str->st.str, alloc);
#if !HAVE_MALLOC_USABLE_SIZE
- set(mkloc(str->st.alloc, str), num(alloc));
+ str->st.alloc = alloc;
#endif
}
}