summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/guile-3.0-crash.patch
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-03-27 18:12:31 +0100
committerLudovic Courtès <ludo@gnu.org>2020-03-27 19:09:30 +0100
commit313973980215a50ac0b40b44ab995254eff1dae5 (patch)
tree97b677d79f49d02fe38611c4326da5f49a83b957 /gnu/packages/patches/guile-3.0-crash.patch
parenteb5341c2353ef54ef8b227ae8e50aa5736a40ddc (diff)
downloadpatches-313973980215a50ac0b40b44ab995254eff1dae5.tar
patches-313973980215a50ac0b40b44ab995254eff1dae5.tar.gz
gnu: guile-next: Update to 3.0.2.
* gnu/packages/guile.scm (guile-3.0): Update to 3.0.2. * gnu/packages/patches/guile-3.0-crash.patch: Remove. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/patches/guile-3.0-crash.patch')
-rw-r--r--gnu/packages/patches/guile-3.0-crash.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/gnu/packages/patches/guile-3.0-crash.patch b/gnu/packages/patches/guile-3.0-crash.patch
deleted file mode 100644
index 510834ab57..0000000000
--- a/gnu/packages/patches/guile-3.0-crash.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Fix crash due to: <https://issues.guix.gnu.org/issue/39266>.
-
-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. */