From 1a659471764b66264fe34075bc19665943a6a4ef Mon Sep 17 00:00:00 2001 From: ArenM Date: Thu, 30 Sep 2021 14:23:21 -0400 Subject: [PATCH] gnss: fix double free introduced by !29 !29 changed the url varible in fetch_assistance_data to use g_autofree, but didn't remove all calls to free it. --- src/gnss.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gnss.c b/src/gnss.c index b538942..bf8d066 100644 --- a/src/gnss.c +++ b/src/gnss.c @@ -254,7 +254,6 @@ static void fetch_assistance_data(struct EG25Manager *manager) fflush(tmp_file); curl_easy_cleanup(curl); - g_free(url); /* Go to the next step */ manager->gnss_assistance_step++;