Fix crash due to: . diff --git a/libguile/struct.c b/libguile/struct.c index 3dbcc71d4..ddcbe46d2 100644 --- a/libguile/struct.c +++ b/libguile/struct.c @@ -139,7 +139,9 @@ set_vtable_access_fields (SCM vtable) nfields = len / 2; bitmask_size = (nfields + 31U) / 32U; - unboxed_fields = scm_gc_malloc_pointerless (bitmask_size, "unboxed fields"); + unboxed_fields = + scm_gc_malloc_pointerless (bitmask_size * sizeof (*unboxed_fields), + "unboxed fields"); memset (unboxed_fields, 0, bitmask_size * sizeof(*unboxed_fields)); /* Update FLAGS according to LAYOUT. */ value='dc67e9e5b2485e7a2f50b3979bdff968028eec42'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/build-aux/git-authenticate.scm
AgeCommit message (Expand)Author
2020-05-07git-authenticate: Use the 'origin/keyring' branch by default....Ludovic Courtès
2020-05-04git-authenticate: Add missing import....Ludovic Courtès
2020-05-04git-authenticate: Load the keyring from the repository....Ludovic Courtès
2020-05-04git-authenticate: Load the list of authorized keys from the tree....Ludovic Courtès
2020-05-04git-authenticate: Use (guix openpgp)....Ludovic Courtès
2020-04-17gnupg: Accept revoked keys....Tobias Geerinckx-Rice