From 7bd79b112d0b4432bc87be0a3d4ce93492bf8519 Mon Sep 17 00:00:00 2001 From: Loic Le Page Date: Wed, 19 Jan 2022 18:56:56 +0100 Subject: Fix non-initialized variable in gio/tests/socket-client.c --- gio/tests/socket-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/socket-client.c b/gio/tests/socket-client.c index 6c25e08c9..92bf41fb9 100644 --- a/gio/tests/socket-client.c +++ b/gio/tests/socket-client.c @@ -257,7 +257,7 @@ main (int argc, GIOStream *connection; GInputStream *istream; GOutputStream *ostream; - GSocketAddress *src_address; + GSocketAddress *src_address = NULL; GTlsCertificate *certificate = NULL; gint i; -- cgit v1.2.1