You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Gary D. Gregory (Jira)" <ji...@apache.org> on 2020/12/22 20:15:01 UTC

[jira] [Resolved] (LANG-1544) MethodUtils.invokeMethod NullPointerException in case of null in args list

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

Gary D. Gregory resolved LANG-1544.
-----------------------------------
    Fix Version/s: 3.12
       Resolution: Fixed

[~nagy_peter]

In git master; please verify and close this ticket.

 

> MethodUtils.invokeMethod NullPointerException in case of null in args list
> --------------------------------------------------------------------------
>
>                 Key: LANG-1544
>                 URL: https://issues.apache.org/jira/browse/LANG-1544
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.reflect.*
>    Affects Versions: 3.10
>            Reporter: Peter Nagy
>            Priority: Critical
>             Fix For: 3.12
>
>          Time Spent: 3h 40m
>  Remaining Estimate: 0h
>
> MethodUtils:774
>  
> if (classArray[offset].equals(toClassArray[offset])) {
>  continue;
> } else if (ClassUtils.isAssignable(classArray[offset], toClassArray[offset], true)
>  
> cause NPE if classArray[offset] is null. Can you please extend the if condition with a null check, like this?
>  
> if (classArray[offset] != null && classArray[offset].equals(toClassArray[offset]))



--
This message was sent by Atlassian Jira
(v8.3.4#803005)