[armedbear] #413: CFFI foreign-alloc breaks abcl
armedbear
armedbear-devel at common-lisp.net
Wed Sep 28 06:18:30 UTC 2016
#413: CFFI foreign-alloc breaks abcl
--------------------------+-----------------------
Reporter: charmon | Owner:
Type: defect | Status: new
Priority: major | Milestone:
Component: other | Version: 1.4.0-dev
Resolution: | Keywords:
Parent Tickets: |
--------------------------+-----------------------
Comment (by mevenson):
Fixed via
{{{
# HG changeset patch
# User Mark <evenson.not.org at gmail.com>
# Date 1475043131 -7200
# Wed Sep 28 08:12:11 2016 +0200
# Node ID 029877d34fc2f62467fa475658b8ca2cb6c76f13
# Parent 3678ebde66d2af1cbc191d3407ef3894f385a8ff
imported patch fix-cffi.diff
diff -r 3678ebde66d2 -r 029877d34fc2
src/org/armedbear/lisp/Extensions.java
--- a/src/org/armedbear/lisp/Extensions.java Mon Sep 26 21:26:36 2016
+0000
+++ b/src/org/armedbear/lisp/Extensions.java Wed Sep 28 08:12:11 2016
+0200
@@ -275,7 +275,8 @@
{
try
{
- File file = File.createTempFile("abcl", "", null);
+ // File file = File.createTempFile("abcl", "", null);
+ File file = File.createTempFile("abcl", null, null);
if (file != null)
return new Pathname(file.getPath());
}
}}}
--
Ticket URL: <http://abcl.org/trac/ticket/413#comment:4>
armedbear <http://abcl.org>
armedbear
More information about the armedbear-ticket
mailing list