Description
In revision 'r912149 | elecharny | 2010-02-20 22:04:32 +0500 (Sat, 20 Feb 2010)' the loop that flushes the encoded messages was modified and is no longer thread-safe. In the trunk the queue is checked if it is empty then polled for the next element. Between these calls another thread could have taken the last element in the queue and the element is not checked if it is null.
Starting at line 328:
while (!bufferQueue.isEmpty()) {
Object encodedMessage = bufferQueue.poll();
...
could be replaced with the previous loop:
for (; {
Object encodedMessage = bufferQueue.poll();
if (encodedMessage == null)
...
to make the method thread-safe again.
The same issue exists in ProtocolEncoderOutputImpl.flush().