diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-09 16:16:37 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-06-09 16:16:37 +1200 |
commit | 0e1c89d007b761a83c11dcb2ba378c4db02200ee (patch) | |
tree | 2589b42bf1e0cecd0fa1cc74df3b0adacd47c647 /src/org/traccar/protocol/MxtProtocolDecoder.java | |
parent | 5cf987a9e9cab3e9ec3d2a8acc335a85f2637df0 (diff) | |
download | trackermap-server-0e1c89d007b761a83c11dcb2ba378c4db02200ee.tar.gz trackermap-server-0e1c89d007b761a83c11dcb2ba378c4db02200ee.tar.bz2 trackermap-server-0e1c89d007b761a83c11dcb2ba378c4db02200ee.zip |
Mark reference counting to fix
Diffstat (limited to 'src/org/traccar/protocol/MxtProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/MxtProtocolDecoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/MxtProtocolDecoder.java b/src/org/traccar/protocol/MxtProtocolDecoder.java index 34cb268d9..986fa542a 100644 --- a/src/org/traccar/protocol/MxtProtocolDecoder.java +++ b/src/org/traccar/protocol/MxtProtocolDecoder.java @@ -41,7 +41,7 @@ public class MxtProtocolDecoder extends BaseProtocolDecoder { private static void sendResponse(Channel channel, int device, long id, int crc) { if (channel != null) { - ByteBuf response = Unpooled.buffer(); + ByteBuf response = Unpooled.buffer(); // TODO ref count response.writeByte(device); response.writeByte(MSG_ACK); response.writeIntLE((int) id); @@ -49,7 +49,7 @@ public class MxtProtocolDecoder extends BaseProtocolDecoder { response.writeShortLE(Checksum.crc16( Checksum.CRC16_XMODEM, response.nioBuffer())); - ByteBuf encoded = Unpooled.buffer(0); + ByteBuf encoded = Unpooled.buffer(); encoded.writeByte(0x01); // header while (response.isReadable()) { int b = response.readByte(); |