You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "Frederic Heem (JIRA)" <ji...@apache.org> on 2008/07/01 16:00:45 UTC

[jira] Created: (AXIS2C-1221) memoty leak in http receiver

memoty leak in http receiver
----------------------------

                 Key: AXIS2C-1221
                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
             Project: Axis2-C
          Issue Type: Bug
          Components: transport/http
    Affects Versions: Current (Nightly)
         Environment: linux fc6
            Reporter: Frederic Heem


This a new memory leak in the http receiver, the request being received is:
POST /axis2/services/zigbee HTTP/1.1
User-Agent: Axis2C/1.4.0
Content-Length: 337
Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
Host: localhost:9090

<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>

Here is the valgrind output:
==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
==23841==    by 0x40517EC: axutil_string_create (string.c:52)
==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
==23841==
==23841==
==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
==23841==    by 0x4051258: axutil_strdup (string.c:282)
==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)


-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-1221) memoty leak in http receiver

Posted by "Rajika Kumarasiri (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2C-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12609798#action_12609798 ] 

Rajika Kumarasiri commented on AXIS2C-1221:
-------------------------------------------

This happens to due to the fact that it wasn't properly free the memory allocated at http_transport_utils.c:2191. This allocated memory suppose to be freed by the caller in this case by http_transport_utils.c:252 (axis2_http_trasnport_utils_process_http_request)

> memoty leak in http receiver
> ----------------------------
>
>                 Key: AXIS2C-1221
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: transport/http
>    Affects Versions: Current (Nightly)
>         Environment: linux fc6
>            Reporter: Frederic Heem
>
> This a new memory leak in the http receiver, the request being received is:
> POST /axis2/services/zigbee HTTP/1.1
> User-Agent: Axis2C/1.4.0
> Content-Length: 337
> Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
> Host: localhost:9090
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>
> Here is the valgrind output:
> ==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x40517EC: axutil_string_create (string.c:52)
> ==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
> ==23841==
> ==23841==
> ==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x4051258: axutil_strdup (string.c:282)
> ==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
> ==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Updated: (AXIS2C-1221) memoty leak in http receiver

Posted by "Frederic Heem (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2C-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Frederic Heem updated AXIS2C-1221:
----------------------------------

    Attachment: http_transport_utils_heefre_20080702.patch

The patch http_transport_utils.c.patch solves only one leak out of 2. Please find a new patch which solves both. Please try and let me know.
Regards,

> memoty leak in http receiver
> ----------------------------
>
>                 Key: AXIS2C-1221
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: transport/http
>    Affects Versions: Current (Nightly)
>         Environment: linux fc6
>            Reporter: Frederic Heem
>         Attachments: http_transport_utils.c.patch, http_transport_utils_heefre_20080702.patch
>
>
> This a new memory leak in the http receiver, the request being received is:
> POST /axis2/services/zigbee HTTP/1.1
> User-Agent: Axis2C/1.4.0
> Content-Length: 337
> Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
> Host: localhost:9090
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>
> Here is the valgrind output:
> ==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x40517EC: axutil_string_create (string.c:52)
> ==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
> ==23841==
> ==23841==
> ==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x4051258: axutil_strdup (string.c:282)
> ==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
> ==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-1221) memoty leak in http receiver

Posted by "Frederic Heem (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2C-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12609895#action_12609895 ] 

Frederic Heem commented on AXIS2C-1221:
---------------------------------------

Test has been carried out on my side and it works fine, couldn't you commit the patch ?
Regards,

> memoty leak in http receiver
> ----------------------------
>
>                 Key: AXIS2C-1221
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: transport/http
>    Affects Versions: Current (Nightly)
>         Environment: linux fc6
>            Reporter: Frederic Heem
>         Attachments: http_transport_utils.c.patch, http_transport_utils_heefre_20080702.patch
>
>
> This a new memory leak in the http receiver, the request being received is:
> POST /axis2/services/zigbee HTTP/1.1
> User-Agent: Axis2C/1.4.0
> Content-Length: 337
> Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
> Host: localhost:9090
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>
> Here is the valgrind output:
> ==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x40517EC: axutil_string_create (string.c:52)
> ==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
> ==23841==
> ==23841==
> ==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x4051258: axutil_strdup (string.c:282)
> ==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
> ==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Resolved: (AXIS2C-1221) memoty leak in http receiver

Posted by "Supun Kamburugamuva (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2C-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Supun Kamburugamuva resolved AXIS2C-1221.
-----------------------------------------

    Resolution: Fixed
      Assignee: Supun Kamburugamuva

Patch applied. Thanks Frederic and Rajika for the effort.

> memoty leak in http receiver
> ----------------------------
>
>                 Key: AXIS2C-1221
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: transport/http
>    Affects Versions: Current (Nightly)
>         Environment: linux fc6
>            Reporter: Frederic Heem
>            Assignee: Supun Kamburugamuva
>         Attachments: http_transport_utils.c.patch, http_transport_utils_heefre_20080702.patch
>
>
> This a new memory leak in the http receiver, the request being received is:
> POST /axis2/services/zigbee HTTP/1.1
> User-Agent: Axis2C/1.4.0
> Content-Length: 337
> Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
> Host: localhost:9090
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>
> Here is the valgrind output:
> ==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x40517EC: axutil_string_create (string.c:52)
> ==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
> ==23841==
> ==23841==
> ==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x4051258: axutil_strdup (string.c:282)
> ==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
> ==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Updated: (AXIS2C-1221) memoty leak in http receiver

Posted by "Rajika Kumarasiri (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2C-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rajika Kumarasiri updated AXIS2C-1221:
--------------------------------------

    Attachment: http_transport_utils.c.patch

This patch contains a fix to the problem. Please apply the patch and see it works!

> memoty leak in http receiver
> ----------------------------
>
>                 Key: AXIS2C-1221
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: transport/http
>    Affects Versions: Current (Nightly)
>         Environment: linux fc6
>            Reporter: Frederic Heem
>         Attachments: http_transport_utils.c.patch
>
>
> This a new memory leak in the http receiver, the request being received is:
> POST /axis2/services/zigbee HTTP/1.1
> User-Agent: Axis2C/1.4.0
> Content-Length: 337
> Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
> Host: localhost:9090
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>
> Here is the valgrind output:
> ==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x40517EC: axutil_string_create (string.c:52)
> ==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
> ==23841==
> ==23841==
> ==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x4051258: axutil_strdup (string.c:282)
> ==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
> ==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org


[jira] Commented: (AXIS2C-1221) memoty leak in http receiver

Posted by "Rajika Kumarasiri (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2C-1221?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12609882#action_12609882 ] 

Rajika Kumarasiri commented on AXIS2C-1221:
-------------------------------------------

Yeah, I did test with the new patch. All the sample works fine. It'd be nice if you too can check with your client as well

> memoty leak in http receiver
> ----------------------------
>
>                 Key: AXIS2C-1221
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1221
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: transport/http
>    Affects Versions: Current (Nightly)
>         Environment: linux fc6
>            Reporter: Frederic Heem
>         Attachments: http_transport_utils.c.patch, http_transport_utils_heefre_20080702.patch
>
>
> This a new memory leak in the http receiver, the request being received is:
> POST /axis2/services/zigbee HTTP/1.1
> User-Agent: Axis2C/1.4.0
> Content-Length: 337
> Content-Type: application/soap+xml;charset=UTF-8;action="SetDeviceName"
> Host: localhost:9090
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"><soapenv:Header></soapenv:Header><soapenv:Body><n:SetDeviceNameRequestParam xmlns:n="http://www.telsey.com/DPWS/2008/03/Zigbee"><n:eui64Address>000d6f0000096da5</n:eui64Address><n:name>pippo</n:name></n:SetDeviceNameRequestParam></soapenv:Body></soapenv:Envelope>
> Here is the valgrind output:
> ==23841== 30 (16 direct, 14 indirect) bytes in 1 blocks are definitely lost in loss record 24 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x40517EC: axutil_string_create (string.c:52)
> ==23841==    by 0x4019F7B: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:464)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)
> ==23841==
> ==23841==
> ==23841== 31 bytes in 2 blocks are definitely lost in loss record 27 of 34
> ==23841==    at 0x4005858: malloc (vg_replace_malloc.c:207)
> ==23841==    by 0x4051258: axutil_strdup (string.c:282)
> ==23841==    by 0x4017D96: axis2_http_transport_utils_get_value_from_content_type (http_transport_utils.c:2191)
> ==23841==    by 0x40199D0: axis2_http_transport_utils_process_http_post_request (http_transport_utils.c:319)
> ==23841==    by 0x4016B03: axis2_http_worker_process_request (http_worker.c:908)
> ==23841==    by 0x4123ED0: axis2_svr_thread_worker_func (http_svr_thread.c:259)
> ==23841==    by 0x405EEE5: dummy_worker (thread_unix.c:93)
> ==23841==    by 0x8E145A: start_thread (in /lib/libpthread-2.5.so)
> ==23841==    by 0x71323D: clone (in /lib/libc-2.5.so)

-- 
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: axis-c-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-dev-help@ws.apache.org