We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956e0c8 commit 6bc86f8Copy full SHA for 6bc86f8
mqtt/MQTTDeserializePublish.c
@@ -50,7 +50,7 @@ int MQTTDeserialize_publish(unsigned char* dup, int* qos, unsigned char* retaine
50
*qos = header.bits.qos;
51
*retained = header.bits.retain;
52
53
- curdata += (rc = MQTTPacket_decodeBuf(curdata, &mylen)); /* read remaining length */
+ curdata += MQTTPacket_decodeBuf(curdata, &mylen); /* read remaining length */
54
enddata = curdata + mylen;
55
56
if (!readMQTTLenString(topicName, &curdata, enddata) ||
0 commit comments