You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Roman Shtykh (JIRA)" <ji...@apache.org> on 2016/09/07 05:39:20 UTC

[jira] [Closed] (IGNITE-3809) ArrayIndexOutOfBoundsException in GridUnsafeLru

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

Roman Shtykh closed IGNITE-3809.
--------------------------------

Merged.

> ArrayIndexOutOfBoundsException in GridUnsafeLru
> -----------------------------------------------
>
>                 Key: IGNITE-3809
>                 URL: https://issues.apache.org/jira/browse/IGNITE-3809
>             Project: Ignite
>          Issue Type: Bug
>          Components: cache
>    Affects Versions: 1.7
>            Reporter: Valentin Kulichenko
>            Assignee: Roman Shtykh
>             Fix For: 1.8
>
>
> {{GridUnsafeLru.offer(..)}} method uses atomic integer as a counter. In case of integer overflow this method will throw {{ArrayIndexOutOfBoundsException}}.
> We should use {{abs}} to avoid this. For example, like this:
> {code}
> return lrus[U.safeAbs(addIdx.getAndIncrement()) % cnt].offer(part, addr, hash);
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)