Skip to content
Snippets Groups Projects
Commit 01650a44 authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

Merge pull request #5360 from authmillenon/gnrc_sixlowpan_iphc/fix/signage

gnrc_sixlowpan_iphc: fix comparison signage
parents fbb144f7 84a9ddb2
No related branches found
No related tags found
No related merge requests found
...@@ -566,7 +566,7 @@ inline static size_t iphc_nhc_udp_encode(gnrc_pktsnip_t *udp, ipv6_hdr_t *ipv6_h ...@@ -566,7 +566,7 @@ inline static size_t iphc_nhc_udp_encode(gnrc_pktsnip_t *udp, ipv6_hdr_t *ipv6_h
if (udp->type == GNRC_NETTYPE_IPV6) { if (udp->type == GNRC_NETTYPE_IPV6) {
/* forwarded ipv6 packet */ /* forwarded ipv6 packet */
size_t diff = sizeof(udp_hdr_t) - nhc_len; size_t diff = sizeof(udp_hdr_t) - nhc_len;
for (int i = nhc_len; i < (udp->size - diff); i++) { for (size_t i = nhc_len; i < (udp->size - diff); i++) {
udp_data[i] = udp_data[i + diff]; udp_data[i] = udp_data[i + diff];
} }
/* NOTE: gnrc_pktbuf_realloc_data overflow if (udp->size - diff) < 4 */ /* NOTE: gnrc_pktbuf_realloc_data overflow if (udp->size - diff) < 4 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment