You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "James Netherton (JIRA)" <ji...@apache.org> on 2017/05/11 15:33:04 UTC

[jira] [Created] (CAMEL-11264) Potential NPE in DefaultUndertowHttpBinding

James Netherton created CAMEL-11264:
---------------------------------------

             Summary: Potential NPE in DefaultUndertowHttpBinding
                 Key: CAMEL-11264
                 URL: https://issues.apache.org/jira/browse/CAMEL-11264
             Project: Camel
          Issue Type: Bug
          Components: camel-undertow
    Affects Versions: 2.19.0, 2.18.3, 2.18.2, 2.18.1, 2.18.0
            Reporter: James Netherton


There's a potential NPE lurking in {{DefaultUndertowHttpBinding}}. We have this logic:

{code:java}
// we failed due to an exception so print it as plain text
StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);
exception.getCause().printStackTrace(pw);
{code}

Unfortuantely, {{exception.getCause()}} is not always guaranteed to be present and may be {{null}}.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)