Message ID | 20220729164850.460886bb@rorschach.local.home (mailing list archive) |
---|---|
State | Accepted |
Commit | ef8a8d7a748ac7937742d1dddd3207c1c2401d5d |
Headers | show |
Series | trace-cmd libs: Initialize msg to NULL tracecmd_msg_read_data() | expand |
diff --git a/lib/trace-cmd/trace-msg.c b/lib/trace-cmd/trace-msg.c index 9c26401a..342d03e4 100644 --- a/lib/trace-cmd/trace-msg.c +++ b/lib/trace-cmd/trace-msg.c @@ -980,6 +980,8 @@ int tracecmd_msg_read_data(struct tracecmd_msg_handle *msg_handle, int ofd) ssize_t s; int ret; + memset(&msg, 0, sizeof(msg)); + while (!tracecmd_msg_done(msg_handle)) { n = read_msg_data(msg_handle, &msg); if (n <= 0)