You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (JIRA)" <ji...@apache.org> on 2013/10/18 09:39:45 UTC

[jira] [Resolved] (WW-4182) NullPointerException in DefaultUrlHelper

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

Lukasz Lenart resolved WW-4182.
-------------------------------

    Resolution: Fixed

Solved, thanks for reporting!

> NullPointerException in DefaultUrlHelper
> ----------------------------------------
>
>                 Key: WW-4182
>                 URL: https://issues.apache.org/jira/browse/WW-4182
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Core Actions
>    Affects Versions: 2.3.15.1
>            Reporter: Thomas Goettlich
>            Assignee: Lukasz Lenart
>             Fix For: 2.3.16
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> In the method ??DefaultUrlHelper.buildParametersString(...)?? a NullPointerException occurs whenever an array or iterable parameter containing null elements is passed.
> The problem seems to be lines 214 and 244, which look the same: 
> {code}
> link.append(buildParameterSubstring(name, paramValue.toString()));
> {code}
> For null parameters an empty string is written to the url:
> {code}
> value != null ? value.toString() : StringUtils.EMPTY
> {code}
> A fix would be to check ??paramValue?? for null as well, thus allowing arrays or iterables to contain null elements.



--
This message was sent by Atlassian JIRA
(v6.1#6144)