From 2a2a8713b323b13c11544ff4254e4421b89563dd Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Sat, 27 Dec 2025 12:41:22 +0100 Subject: [PATCH] fix all the valgrind warnings --- src/rds95.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rds95.c b/src/rds95.c index b398379..d61e427 100644 --- a/src/rds95.c +++ b/src/rds95.c @@ -82,8 +82,8 @@ int main(int argc, char **argv) { }; pa_simple *rds_device = NULL; - pa_sample_spec format; - pa_buffer_attr buffer; + pa_sample_spec format = {0}; + pa_buffer_attr buffer = {0}; pthread_attr_t attr; pthread_t udp_server_thread;