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 da...@apache.org on 2008/07/28 17:03:55 UTC

svn commit: r680377 - /webservices/axis2/trunk/c/src/core/clientapi/op_client.c

Author: damitha
Date: Mon Jul 28 08:03:53 2008
New Revision: 680377

URL: http://svn.apache.org/viewvc?rev=680377&view=rev
Log:
Free the engine in the path where engine receive already done by a handler

Modified:
    webservices/axis2/trunk/c/src/core/clientapi/op_client.c

Modified: webservices/axis2/trunk/c/src/core/clientapi/op_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/clientapi/op_client.c?rev=680377&r1=680376&r2=680377&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/clientapi/op_client.c (original)
+++ webservices/axis2/trunk/c/src/core/clientapi/op_client.c Mon Jul 28 08:03:53 2008
@@ -1236,6 +1236,10 @@
                 axis2_char_t *value = axutil_property_get_value(property, env);
                 if (!axutil_strcmp(AXIS2_VALUE_TRUE, value))
                 {
+                    if(engine)
+                    {
+                        axis2_engine_free(engine, env);
+                    }
                     return response;
                 }
             }