Signed-off-by: Tomek Grabiec <tgrab...@gmail.com>
---
 vm/jni-interface.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/vm/jni-interface.c b/vm/jni-interface.c
index 05f8265..40a5469 100644
--- a/vm/jni-interface.c
+++ b/vm/jni-interface.c
@@ -448,6 +448,13 @@ vm_jni_is_assignable_from(struct vm_jni_env *env, jobject 
clazz1,
        return vm_class_is_assignable_from(class1, class2);
 }
 
+static void vm_jni_delete_local_ref(struct vm_jni_env *env, jobject ref)
+{
+       enter_vm_from_jni();
+
+       NOT_IMPLEMENTED;
+}
+
 /*
  * The JNI native interface table.
  * See: http://java.sun.com/j2se/1.4.2/docs/guide/jni/spec/functions.html
@@ -485,7 +492,7 @@ void *vm_jni_native_interface[] = {
        NULL,
        vm_jni_new_global_ref,
        vm_jni_delete_global_ref,
-       NULL, /* DeleteLocalRef */
+       vm_jni_delete_local_ref, /* DeleteLocalRef */
        NULL, /* IsSameObject */
 
        /* 25 */
-- 
1.6.0.6


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Jatovm-devel mailing list
Jatovm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jatovm-devel

Reply via email to