diff mbox series

[Bluez,5/6] Fix leaks in src

Message ID 20210514100042.4fdd13a5@ivy-bridge
State New
Headers show
Series None | expand

Commit Message

Steve Grubb May 14, 2021, 2 p.m. UTC
g_key_file_get_string allocates memory that must be freed.

asprintf allocates memory that must be freed.

---
 src/main.c         | 1 +
 src/shared/shell.c | 1 +
 2 files changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/src/main.c b/src/main.c
index c32bda7d4..94141b1e4 100644
--- a/src/main.c
+++ b/src/main.c
@@ -795,6 +795,7 @@  static void parse_config(GKeyFile *config)
 
 	parse_br_config(config);
 	parse_le_config(config);
+	g_free(str);
 }
 
 static void init_defaults(void)
diff --git a/src/shared/shell.c b/src/shared/shell.c
index c0de1640d..eed300631 100644
--- a/src/shared/shell.c
+++ b/src/shared/shell.c
@@ -611,6 +611,7 @@  void bt_shell_prompt_input(const char *label, const char *msg,
 		prompt->user_data = user_data;
 
 		queue_push_tail(data.prompts, prompt);
+		free(str);
 
 		return;
 	}