1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/microcoap/patches/0005-fix-uninitialized-variable.patch
Patrick Grosse a7043f1eb2 pkg: microcoap: bump version (ef27289, Feb 5 2016)
* Latest version contains more CoAP content types
* More comments
* Small bugfixes
2017-03-30 13:50:12 +02:00

26 lines
697 B
Diff

From 3d467db74c39df3f79cacfe661fb29d413e2db38 Mon Sep 17 00:00:00 2001
From: Patrick Grosse <patrick.grosse@uni-muenster.de>
Date: Sat, 25 Mar 2017 10:36:09 +0100
Subject: [PATCH 5/6] fix uninitialized variable
---
coap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/coap.c b/coap.c
index 407d1d2..5006b59 100644
--- a/coap.c
+++ b/coap.c
@@ -295,7 +295,7 @@ int coap_build(uint8_t *buf, size_t *buflen, const coap_packet_t *pkt)
for (i=0;i<pkt->numopts;i++)
{
uint32_t optDelta;
- uint8_t len, delta = 0;
+ uint8_t len = 0, delta = 0;
if (((size_t)(p-buf)) > *buflen)
return COAP_ERR_BUFFER_TOO_SMALL;
--
2.7.4