Author: mturk
Date: Mon May  4 06:14:31 2009
New Revision: 771191

URL: http://svn.apache.org/viewvc?rev=771191&view=rev
Log:
Use correct callback function

Modified:
    commons/sandbox/runtime/trunk/src/main/native/shared/memory.c

Modified: commons/sandbox/runtime/trunk/src/main/native/shared/memory.c
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/memory.c?rev=771191&r1=771190&r2=771191&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/shared/memory.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/shared/memory.c Mon May  4 
06:14:31 2009
@@ -250,7 +250,7 @@
 ACR_JNI_EXPORT_DECLARE(jobject, Memory, nullp0)(ACR_JNISTDARGS)
 {
     UNREFERENCED_O;
-    return ACR_PointerCreate(_E, NULL, 0, ptr_cleanup);
+    return ACR_PointerCreate(_E, NULL, 0, memory_pointer_cleanup);
 }
 
 ACR_JNI_EXPORT_DECLARE(jobject, Memory, malloc)(ACR_JNISTDARGS, jlong siz)


Reply via email to