From a8b5fad54044c7b5e7c6aa30ad24e5a86fc51daf Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 7 Sep 2005 17:23:00 +0000 Subject: Fix memory leaks with textfile_get() usage --- hcid/storage.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'hcid/storage.c') diff --git a/hcid/storage.c b/hcid/storage.c index e270cbd8..e8d2ce1c 100644 --- a/hcid/storage.c +++ b/hcid/storage.c @@ -37,6 +37,7 @@ #include #include #include +#include #include #include #include @@ -87,6 +88,8 @@ int read_device_name(bdaddr_t *local, bdaddr_t *peer, char *name) str[248] = '\0'; strcpy(name, str); + free(str); + return 0; } @@ -162,6 +165,8 @@ int read_link_key(bdaddr_t *local, bdaddr_t *peer, unsigned char *key) key[i] = (uint8_t) strtol(tmp, NULL, 16); } + free(str); + return 0; } @@ -181,5 +186,7 @@ int read_pin_code(bdaddr_t *local, bdaddr_t *peer, char *pin) strncpy(pin, str, 16); len = strlen(pin); + free(str); + return len; } -- cgit