You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Oliver Wulff (JIRA)" <ji...@apache.org> on 2011/06/07 23:31:59 UTC

[jira] [Updated] (CXF-3576) Potential overflow for lifetime calculation in STSClient

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

Oliver Wulff updated CXF-3576:
------------------------------

    Attachment: patch.diff

diff of patch attached

> Potential overflow for lifetime calculation in STSClient
> --------------------------------------------------------
>
>                 Key: CXF-3576
>                 URL: https://issues.apache.org/jira/browse/CXF-3576
>             Project: CXF
>          Issue Type: Bug
>          Components: WS-* Components
>    Affects Versions: 2.4
>            Reporter: Oliver Wulff
>             Fix For: 2.4.1
>
>         Attachments: patch.diff
>
>
> This code performs integer multiply and then converts the result to a long:
> expirationTime.setTime(creationTime.getTime() + (ttl * 1000));
> Fix:
> expirationTime.setTime(creationTime.getTime() + (ttl * 1000L));

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira