We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ab60257 + d6df691 commit 5d453acCopy full SHA for 5d453ac
2 files changed
examples/nbclient/nbclient.c
@@ -554,6 +554,8 @@ int mqttclient_test(MQTTCtx *mqttCtx)
554
do {
555
rc = mqttclient_test(&mqttCtx);
556
} while (rc == MQTT_CODE_CONTINUE);
557
+
558
+ mqtt_free_ctx(&mqttCtx);
559
#else
560
(void)argc;
561
(void)argv;
@@ -563,7 +565,6 @@ int mqttclient_test(MQTTCtx *mqttCtx)
563
565
PRINTF("Example not compiled in!");
564
566
rc = 0; /* return success, so make check passes with TLS disabled */
567
#endif
- mqtt_free_ctx(&mqttCtx);
568
569
return (rc == 0) ? 0 : EXIT_FAILURE;
570
}
wolfmqtt/version.h
@@ -35,7 +35,7 @@ extern "C" {
35
36
37
#define LIBWOLFMQTT_VERSION_STRING "1.10.0"
38
-#define LIBWOLFMQTT_VERSION_HEX 0x0100A000
+#define LIBWOLFMQTT_VERSION_HEX 0x01010000
39
40
#ifdef __cplusplus
41
0 commit comments