Return-Path: From: gowtham babu To: linux-bluetooth@vger.kernel.org Cc: bharat.panda@samsung.com, p.sinha@samsung.com, gowtham babu Subject: [PATCH 1/3] tools/csr_usb : Fix Resource leak: file Date: Fri, 05 Sep 2014 20:05:44 +0530 Message-id: <1409927744-6865-1-git-send-email-gowtham.ab@samsung.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Handles resource leak. In the previous mail, I wrongly entered the PATCH subject prefix as [MAP]. This is the updated one. Sorry for the inconvenience caused if any. --- tools/csr_usb.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/csr_usb.c b/tools/csr_usb.c index 5fb6bdc..a1d7324 100644 --- a/tools/csr_usb.c +++ b/tools/csr_usb.c @@ -80,9 +80,12 @@ static int read_value(const char *name, const char *attr, const char *format) return -1; n = fscanf(file, format, &value); - if (n != 1) + if (n != 1) { + fclose(file); return -1; + } + fclose(file); return value; } -- 1.9.1