You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kristian Waagan (JIRA)" <ji...@apache.org> on 2009/12/15 09:50:18 UTC

[jira] Resolved: (DERBY-4472) [patch] non short circuit op, could cause eof problems

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

Kristian Waagan resolved DERBY-4472.
------------------------------------

          Resolution: Fixed
       Fix Version/s: 10.6.0.0
    Issue & fix info:   (was: [Patch Available])

Thanks for the update.

Committed the patch to trunk with revision 890692.

> [patch] non short circuit op, could cause eof problems
> ------------------------------------------------------
>
>                 Key: DERBY-4472
>                 URL: https://issues.apache.org/jira/browse/DERBY-4472
>             Project: Derby
>          Issue Type: Bug
>          Components: JDBC
>    Affects Versions: 10.5.3.0
>            Reporter: Dave Brosius
>            Priority: Trivial
>             Fix For: 10.6.0.0
>
>         Attachments: sc.diff
>
>
> (from patch)
>          int offset = 0;
> -        while( offset < dataDirectory.length() & Character.isSpaceChar( dataDirectory.charAt( offset)))
> +        while( offset < dataDirectory.length() && Character.isSpaceChar( dataDirectory.charAt( offset)))
>              offset ++;
>          int leftParen = -1;
>          int rightParen = -1;

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