mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
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/
17 lines
506 B
Text
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);
|
|
}
|