Skip to content

Commit 65f3241

Browse files
committed
Fixes for release
1 parent a45ddaf commit 65f3241

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

ChangeLog.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## Release Notes
22

3-
### v1.16.0 (11/2/2023)
3+
### v1.17.0 (11/2/2023)
4+
Release 1.17.0 has been developed according to wolfSSL's development and QA process (see link below) and successfully passed the quality criteria.
5+
https://www.wolfssl.com/about/wolfssl-software-development-process-quality-assurance
6+
47
* Fix for declaration after executable block by @lealem47 in #341
58
* Add QNX IDE, Makefile, and remove source code exec bit by @JacobBarthelmeh
69
in #317

examples/pub-sub/mqtt-pub.c

-1
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,6 @@ int pub_client(MQTTCtx *mqttCtx)
461461
static BOOL CtrlHandler(DWORD fdwCtrlType)
462462
{
463463
if (fdwCtrlType == CTRL_C_EVENT) {
464-
mStopRead = 1;
465464
PRINTF("Received Ctrl+c");
466465
return TRUE;
467466
}

scripts/firmware.test

+3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ sleep 0.5
6767
server_result=$?
6868
[ $server_result -ne 0 ] && echo -e "\n\nMQTT Example fwpush failed!" && do_cleanup "-1"
6969

70+
# give some time for the client complete
71+
sleep 0.5
72+
7073
if [ $ENABLE_MQTT_TLS -ne 1 ]; then
7174
# Compare files
7275
echo "Comparing files"

src/mqtt_sn_packet.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ int SN_Packet_Read(MqttClient *client, byte* rx_buf, int rx_buf_len,
14881488
return MqttPacket_HandleNetError(client,
14891489
MQTT_TRACE_ERROR(MQTT_CODE_ERROR_NETWORK));
14901490
}
1491-
rc += len;
1491+
len += rc;
14921492
}
14931493
else {
14941494
rc = MqttSocket_Peek(client, rx_buf, 4, timeout_ms);

0 commit comments

Comments
 (0)