You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by da...@apache.org on 2005/11/07 06:43:46 UTC

svn commit: r331219 - /webservices/axis2/trunk/c/modules/core/description/src/param_container.c

Author: damitha
Date: Sun Nov  6 21:43:42 2005
New Revision: 331219

URL: http://svn.apache.org/viewcvs?rev=331219&view=rev
Log:
Updated param_container.c to reflect the changes in macro

Modified:
    webservices/axis2/trunk/c/modules/core/description/src/param_container.c

Modified: webservices/axis2/trunk/c/modules/core/description/src/param_container.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/src/param_container.c?rev=331219&r1=331218&r2=331219&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/src/param_container.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/src/param_container.c Sun Nov  6 21:43:42 2005
@@ -99,9 +99,9 @@
 		AXIS2_FREE((*env)->allocator, param_container->ops);
 	
 	if(NULL != AXIS2_INTF_TO_IMPL(param_container)->params)
-		AXIS2_FREE((*env)->allocator, AXIS2_INTF_TO_IMPL(param_container)->params);
+		axis2_hash_free(AXIS2_INTF_TO_IMPL(param_container)->params, env);
 	
-    axis2_hash_free(AXIS2_INTF_TO_IMPL(param_container), env);    
+    AXIS2_FREE((*env)->allocator, AXIS2_INTF_TO_IMPL(param_container));    
     return AXIS2_SUCCESS;
 }