You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by su...@apache.org on 2008/08/06 07:57:18 UTC

svn commit: r683119 - /webservices/axis2/trunk/c/util/include/axutil_allocator.h

Author: supun
Date: Tue Aug  5 22:57:18 2008
New Revision: 683119

URL: http://svn.apache.org/viewvc?rev=683119&view=rev
Log:
correcting a typo

Modified:
    webservices/axis2/trunk/c/util/include/axutil_allocator.h

Modified: webservices/axis2/trunk/c/util/include/axutil_allocator.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/axutil_allocator.h?rev=683119&r1=683118&r2=683119&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/include/axutil_allocator.h (original)
+++ webservices/axis2/trunk/c/util/include/axutil_allocator.h Tue Aug  5 22:57:18 2008
@@ -160,15 +160,13 @@
         axutil_allocator_t * allocator);
 
 #define AXIS2_MALLOC(allocator, size) \
-    malloc(size)
-     /* ((allocator)->malloc_fn(allocator, size))*/
+     ((allocator)->malloc_fn(allocator, size))
 
 #define AXIS2_REALLOC(allocator, ptr, size) \
       ((allocator)->realloc(allocator, ptr, size))
 
 #define AXIS2_FREE(allocator, ptr) \
-    free(ptr)
-     /* ((allocator)->free_fn(allocator, ptr))*/
+    ((allocator)->free_fn(allocator, ptr))
 
     /** @} */