in http_worker.c function axis2_http_worker_process_request(): if status == 
AXIS2_FAILURE then engine and fault_ctx are not freed.
----------------------------------------------------------------------------------------------------------------------------------

                 Key: AXIS2C-1472
                 URL: https://issues.apache.org/jira/browse/AXIS2C-1472
             Project: Axis2-C
          Issue Type: Bug
          Components: core/transport
    Affects Versions: 1.7.0
         Environment: linux
            Reporter: Robert Springer
            Priority: Minor


in http_worker.c function axis2_http_worker_process_request(): if status == 
AXIS2_FAILURE then engine and fault_ctx are not freed:

                 axis2_http_status_line_free(tmp_stat_line, env);
                 tmp_stat_line = NULL;
             }
+            axis2_engine_free(engine, env);
+
+            if (fault_ctx)
+            {
+                axis2_msg_ctx_free(fault_ctx, env);
+            }            
         }
     }
     else

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to