From a02c369627b8aa60b805efee7703bec3c4809f6f Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Tue, 17 Jun 2014 10:34:07 +0300 Subject: [PATCH] android/health: Fix using uninitialized value err --- android/health.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/health.c b/android/health.c index 06ae595ab..0462e99c7 100644 --- a/android/health.c +++ b/android/health.c @@ -345,7 +345,7 @@ static int register_service_additional_protocols(sdp_record_t *rec, sdp_list_t *access_proto_list = NULL; sdp_data_t *psm = NULL; uint32_t dcpsm; - GError *err; + GError *err = NULL; DBG(""); -- 2.47.3