diff options
author | shankar | 2010-04-05 05:59:47 +0000 |
---|---|---|
committer | shankar | 2010-04-05 05:59:47 +0000 |
commit | 6a4307a3703b0a19abe728266deea5381145dadb (patch) | |
tree | 75b7e9cee6ec090bf111eea892b1cab77d0fa92a /axiom/src/soap | |
parent | afe578cd8894b9a6cd6c6b65e552448536f02dce (diff) | |
download | axis2c-6a4307a3703b0a19abe728266deea5381145dadb.tar.gz axis2c-6a4307a3703b0a19abe728266deea5381145dadb.tar.bz2 |
Fixing memory leaks
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@930802 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'axiom/src/soap')
-rw-r--r-- | axiom/src/soap/soap_envelope.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/axiom/src/soap/soap_envelope.c b/axiom/src/soap/soap_envelope.c index 48e10f7..390d4a4 100644 --- a/axiom/src/soap/soap_envelope.c +++ b/axiom/src/soap/soap_envelope.c @@ -433,6 +433,7 @@ axiom_soap_envelope_create_default_soap_envelope( return NULL; } soap_envelope = axiom_soap_envelope_create(env, om_ns); + axiom_namespace_free(om_ns, env); soap_header = axiom_soap_header_create_with_parent(env, soap_envelope); soap_body = axiom_soap_body_create_with_parent(env, soap_envelope); @@ -449,6 +450,7 @@ axiom_soap_envelope_create_default_soap_envelope( return NULL; } soap_envelope = axiom_soap_envelope_create(env, om_ns); + axiom_namespace_free(om_ns, env); soap_header = axiom_soap_header_create_with_parent(env, soap_envelope); soap_body = axiom_soap_body_create_with_parent(env, soap_envelope); |