You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2010/07/12 01:18:49 UTC

[jira] Resolved: (NET-328) FromNetASCIIInputStream.read(byte[], int, int) may change length passed to superclass if not doing conversion

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

Sebb resolved NET-328.
----------------------

    Fix Version/s: 2.1
       Resolution: Fixed

Fixed

> FromNetASCIIInputStream.read(byte[], int, int) may change length passed to superclass if not doing conversion
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: NET-328
>                 URL: https://issues.apache.org/jira/browse/NET-328
>             Project: Commons Net
>          Issue Type: Bug
>    Affects Versions: 2.0
>            Reporter: Sebb
>            Priority: Minor
>             Fix For: 2.1
>
>
> The method FromNetASCIIInputStream.read(byte[], int, int) may change the length passed to superclass if not doing conversion.
> It should probably check  _noConversionRequired and call the super-class before recalculating the length.
> That is
> {code}
> if (_noConversionRequired)
>     return super.read(buffer, offset, __length);
> {code}
> should be done at the very start of the method.

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