From 69a6a633d4f98d9a15c323d43edcd2395c14d141 Mon Sep 17 00:00:00 2001 From: lohhiiccc <96543753+lohhiiccc@users.noreply.github.com> Date: Mon, 2 Mar 2026 13:02:28 +0100 Subject: [PATCH] fix(test): compilation warning --- tests/recv/test_parse_packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/recv/test_parse_packet.c b/tests/recv/test_parse_packet.c index 41e1d5d..8fcd9fd 100644 --- a/tests/recv/test_parse_packet.c +++ b/tests/recv/test_parse_packet.c @@ -45,7 +45,7 @@ Test(parse_packet, valid_packet) Test(parse_packet, buffer_too_small) { - uint8_t buffer[10]; + uint8_t buffer[10] = {0}; uint8_t type, code, ttl; struct in_addr src_addr; const void *payload;