ports/java/sablevm/files/patch-ae
Archie Cobbs f685b62b06 SableVM implements the Java virtual machine specification, second edition.
SableVM is a bytecode interpreter. It's goals are to be reasonably small,
efficient, and fast, as well as providing a well-designed platform for
doing research into different algorithms for bytecode interpretation,
garbage collection, memory management, etc.

SableVM uses a modified version of the GNU Classpath Java classes;
these classes are installed by the "sablepath" port.

WWW: http://www.sablevm.org/
2002-07-09 22:08:30 +00:00

17 lines
506 B
Text

diff -ur sablevm-0.1.6.orig/src/libsablevm/error.c sablevm-0.1.6/src/libsablevm/error.c
--- sablevm-0.1.6.orig/src/libsablevm/error.c Sun Apr 15 03:52:45 2001
+++ sablevm-0.1.6/src/libsablevm/error.c Tue Jul 9 13:11:04 2002
@@ -202,11 +202,13 @@
{
/* probably NULL pointer exception. Let's check... */
+#if 0
if (info->si_addr != NULL)
{
/* not a NULL memory access. We don't handle this. */
goto delegate_0;
}
+#endif
signal_throw (NULL_POINTER_EXCEPTION);
}