public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] sctp: bugfix for utils/sctp/func_tests/test_1_to_1_events.c
@ 2024-03-29 15:47 yangfeng
  2024-04-04 13:53 ` Petr Vorel
  0 siblings, 1 reply; 4+ messages in thread
From: yangfeng @ 2024-03-29 15:47 UTC (permalink / raw)
  To: ltp; +Cc: yangfeng

From: yangfeng <yangfeng@kylinos.cn>

event not initialized to 0 causes "Got a notification,
expecting a datamsg" issues

Signed-off-by: yangfeng <yangfeng@kylinos.cn>
---
 utils/sctp/func_tests/test_1_to_1_events.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/utils/sctp/func_tests/test_1_to_1_events.c b/utils/sctp/func_tests/test_1_to_1_events.c
index 447845ff3..889d2ff33 100644
--- a/utils/sctp/func_tests/test_1_to_1_events.c
+++ b/utils/sctp/func_tests/test_1_to_1_events.c
@@ -96,6 +96,7 @@ main(void)
 	/* Create the client socket.  */
 	clt_sk = test_socket(AF_INET, SOCK_STREAM, IPPROTO_SCTP);

+	memset(&event, 0, sizeof(struct sctp_event_subscribe));
 	event.sctp_data_io_event = 1;
 	event.sctp_association_event = 1;
 	event.sctp_shutdown_event = 1;
--
2.25.1


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-04-05  7:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-29 15:47 [LTP] [PATCH] sctp: bugfix for utils/sctp/func_tests/test_1_to_1_events.c yangfeng
2024-04-04 13:53 ` Petr Vorel
2024-04-05  6:53   ` yangfeng59949
2024-04-05  7:34     ` Petr Vorel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox