t0xa / gelfj

Graylog Extended Log Format (GELF) implementation in Java and log4j appender without any dependencies.
https://github.com/t0xa/gelfj/wiki
Other
186 stars 116 forks source link

Fix for issue #39 #48

Closed bjkastel closed 11 years ago

bjkastel commented 11 years ago

Slicing of gzipped message datagrams led to NullPointerException in sun.nio.ch.DatagramChannelImpl. In case that the gzipped message length was dividable by MAXIMUM_CHUNK_SIZE without a remainder, the last element of the datagram array could be null.

t0xa commented 11 years ago

Good catch. Thanks.