You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/04/11 19:42:25 UTC

[jira] [Created] (FLINK-3732) Potential null deference in ExecutionConfig#equals()

Ted Yu created FLINK-3732:
-----------------------------

             Summary: Potential null deference in ExecutionConfig#equals()
                 Key: FLINK-3732
                 URL: https://issues.apache.org/jira/browse/FLINK-3732
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
        ((restartStrategyConfiguration == null && other.restartStrategyConfiguration == null) ||
        restartStrategyConfiguration.equals(other.restartStrategyConfiguration)) &&
{code}
If restartStrategyConfiguration is null but other.restartStrategyConfiguration is not null, the above would result in NPE.



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