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/03/17 15:05:33 UTC

[jira] [Created] (FLINK-3635) Potential null deference in TwitterExample#SelectEnglishAndTokenizeFlatMap#flatMap

Ted Yu created FLINK-3635:
-----------------------------

             Summary: Potential null deference in TwitterExample#SelectEnglishAndTokenizeFlatMap#flatMap
                 Key: FLINK-3635
                 URL: https://issues.apache.org/jira/browse/FLINK-3635
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
      JsonNode jsonNode = jsonParser.readValue(value, JsonNode.class);
      if (jsonNode.has("user") && jsonNode.get("user").get("lang").asText().equals("en")) {
{code}
jsonNode.get("user").get("lang") may return null, leading to NullPointerException.



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