https://bz.apache.org/bugzilla/show_bug.cgi?id=70050
--- Comment #1 from Remy Maucherat <[email protected]> --- private final Output output; is final. private volatile HpackDecoder hpackDecoder; is lazily set, always from hpackDecoder = new HpackDecoder(localSettings.getHeaderTableSize()); (output.getHpackDecoder). And it's never nulled out or anything. I'm not sure why the NPE happens here, but can we make HpackDecoder hpackDecoder final to solve any possible issues ? -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
