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/08/03 01:17:20 UTC

[jira] [Created] (FLINK-4309) Potential null pointer dereference in DelegatingConfiguration#keySet()

Ted Yu created FLINK-4309:
-----------------------------

             Summary: Potential null pointer dereference in DelegatingConfiguration#keySet()
                 Key: FLINK-4309
                 URL: https://issues.apache.org/jira/browse/FLINK-4309
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
    final int prefixLen = this.prefix == null ? 0 : this.prefix.length();

    for (String key : this.backingConfig.keySet()) {
      if (key.startsWith(this.prefix)) {
{code}
If this.prefix == null, we would get NPE in startsWith():
{code}
    public boolean startsWith(String prefix, int toffset) {
        char ta[] = value;
        int to = toffset;
        char pa[] = prefix.value;
{code}



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