You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_aws_iot_mqtt_internal_disconnect
/* send the disconnect packet */
if(serialized_len > 0) {
rc = aws_iot_mqtt_internal_send_packet(pClient, serialized_len, &timer);
if(SUCCESS != rc) {
FUNC_EXIT_RC(rc);
}
}
Should remove if (), just no matter disconnect packet send out or not just return 0 let caller release TLS memory
The text was updated successfully, but these errors were encountered:
Hi @andrew0x0,
Thank you for pointing this out. I have added a task to our internal tracker for the next release of the SDK. Please let us know if you find any further issues.
_aws_iot_mqtt_internal_disconnect
/* send the disconnect packet */
if(serialized_len > 0) {
rc = aws_iot_mqtt_internal_send_packet(pClient, serialized_len, &timer);
if(SUCCESS != rc) {
FUNC_EXIT_RC(rc);
}
}
Should remove if (), just no matter disconnect packet send out or not just return 0 let caller release TLS memory
The text was updated successfully, but these errors were encountered: