From b0abb13fafa89f4d00f0c2d37d1babc1d873d6ca Mon Sep 17 00:00:00 2001 From: Syam Sidhardhan Date: Wed, 23 May 2012 21:27:21 +0530 Subject: [PATCH] monitor: Fix memory leak --- monitor/hcidump.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/monitor/hcidump.c b/monitor/hcidump.c index 043c75e0f..373d2f55f 100644 --- a/monitor/hcidump.c +++ b/monitor/hcidump.c @@ -233,7 +233,7 @@ static void device_list(int fd, int max_dev) if (ioctl(fd, HCIGETDEVLIST, (void *) dl) < 0) { perror("Failed to get device list"); - return; + goto done; } for (i = 0; i < dl->dev_num; i++, dr++) { @@ -253,6 +253,7 @@ static void device_list(int fd, int max_dev) open_device(dr->dev_id); } +done: free(dl); } -- 2.47.3