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 "nadir amra (JIRA)" <ax...@ws.apache.org> on 2007/01/27 07:51:49 UTC

[jira] Closed: (AXISCPP-922) Resource leak in AttachmentHelper::extract_Attachment

     [ https://issues.apache.org/jira/browse/AXISCPP-922?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

nadir amra closed AXISCPP-922.
------------------------------

       Resolution: Fixed
    Fix Version/s: current (nightly)

> Resource leak in AttachmentHelper::extract_Attachment
> -----------------------------------------------------
>
>                 Key: AXISCPP-922
>                 URL: https://issues.apache.org/jira/browse/AXISCPP-922
>             Project: Axis-C++
>          Issue Type: Bug
>          Components: Server - Deserialization
>    Affects Versions:  1.6 Final
>         Environment: All platforms, this issue was found in nightly drop 24-Jan-2006 21:23 
>            Reporter: Emanuel Norrbin
>             Fix For: current (nightly)
>
>
> File: server\apache2\AttachmentHelper.cpp
> Method: void AttachmentHelper::extract_Attachment(char *pBuffer)
> Line: 88 - 89
> This is a very easy bug to spot and fix:
>             xsd__base64Binary*  base64_attachment = new xsd__base64Binary();
>             base64_attachment = AxisUtils::decodeFromBase64Binary(attach);		
> In Java this code would be fine but in C++ is is a resource leak,
> the first new is not needed since decodeFromBase64Binary will allocate the xsd__base64Binary.
> I suggest replacing the two lines with this one:
> xsd__base64Binary*  base64_attachment = AxisUtils::decodeFromBase64Binary(attach);
> /Emanuel

-- 
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