tag argument in packetSent points to wrong data
Closed this issue · 1 comments
GoogleCodeExporter commented
What version of the product are you using? On what operating system?
naga-3_0-r48
Please provide any additional information below.
private void fillCurrentOutgoingBuffer() throws IOException
{
..........
else
{
data = (byte[])((Object[])nextPacket)[0];
tag = ((Object[])nextPacket)[0]; // <------ should be ((Object[])nextPacket)[1]
}
..........
}
Original issue reported on code.google.com by borisla...@gmgsys.net
on 17 May 2011 at 10:11
GoogleCodeExporter commented
Thanks, I've made the fix in head.
Original comment by christof...@gmail.com
on 24 May 2011 at 8:41
- Changed state: Fixed