From 0e1c89d007b761a83c11dcb2ba378c4db02200ee Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 9 Jun 2018 16:16:37 +1200 Subject: Mark reference counting to fix --- src/org/traccar/protocol/DmtProtocolDecoder.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/org/traccar/protocol/DmtProtocolDecoder.java') diff --git a/src/org/traccar/protocol/DmtProtocolDecoder.java b/src/org/traccar/protocol/DmtProtocolDecoder.java index 25055d892..637b9f9ca 100644 --- a/src/org/traccar/protocol/DmtProtocolDecoder.java +++ b/src/org/traccar/protocol/DmtProtocolDecoder.java @@ -52,7 +52,7 @@ public class DmtProtocolDecoder extends BaseProtocolDecoder { private void sendResponse(Channel channel, int type, ByteBuf content) { if (channel != null) { - ByteBuf response = Unpooled.buffer(0); + ByteBuf response = Unpooled.buffer(); response.writeByte(0x02); response.writeByte(0x55); // header response.writeByte(type); response.writeShortLE(content != null ? content.readableBytes() : 0); @@ -244,7 +244,7 @@ public class DmtProtocolDecoder extends BaseProtocolDecoder { DeviceSession deviceSession = getDeviceSession( channel, remoteAddress, buf.readSlice(15).toString(StandardCharsets.US_ASCII)); - ByteBuf response = Unpooled.buffer(0); + ByteBuf response = Unpooled.buffer(); // TODO ref count if (length == 51) { response.writeByte(0); // reserved response.writeIntLE(0); // reserved @@ -257,13 +257,13 @@ public class DmtProtocolDecoder extends BaseProtocolDecoder { } else if (type == MSG_COMMIT) { - ByteBuf response = Unpooled.buffer(0); + ByteBuf response = Unpooled.buffer(0); // TODO ref count response.writeByte(1); // flags (success) sendResponse(channel, MSG_COMMIT_RESPONSE, response); } else if (type == MSG_CANNED_REQUEST_1) { - ByteBuf response = Unpooled.buffer(0); + ByteBuf response = Unpooled.buffer(0); // TODO ref count response.writeBytes(new byte[12]); sendResponse(channel, MSG_CANNED_RESPONSE_1, response); -- cgit v1.2.3