diff options
Diffstat (limited to 'libguile/bytevectors.c')
-rw-r--r-- | libguile/bytevectors.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/bytevectors.c b/libguile/bytevectors.c index e8c65bf33..5b79a1435 100644 --- a/libguile/bytevectors.c +++ b/libguile/bytevectors.c @@ -203,7 +203,8 @@ make_bytevector (size_t len) signed char *contents = NULL; if (!SCM_BYTEVECTOR_INLINEABLE_SIZE_P (len)) - contents = (signed char *) scm_gc_malloc (len, SCM_GC_BYTEVECTOR); + contents = (signed char *) + scm_gc_malloc_pointerless (len, SCM_GC_BYTEVECTOR); bv = make_bytevector_from_buffer (len, contents); } |