2009-08-25 15:46:25

by Vladimir Botka

[permalink] [raw]
Subject: [PATCH] fix missing call to closedir

>From 29e477a29519c4a232ba02b6878beeeaa6d57da6 Mon Sep 17 00:00:00 2001
From: Vladimir Botka <[email protected]>
Date: Tue, 25 Aug 2009 13:23:29 +0200
Subject: [PATCH] fix missing call to closedir

---
compat/dun.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/compat/dun.c b/compat/dun.c
index c74e5ee..7140bac 100644
--- a/compat/dun.c
+++ b/compat/dun.c
@@ -106,8 +106,10 @@ static int uses_rfcomm(char *path, char *dev)
int len = readlink(de->d_name, link, sizeof(link));
if (len > 0) {
link[len] = 0;
- if (strstr(link, dev))
+ if (strstr(link, dev)) {
+ closedir(dir);
return 1;
+ }
}
}

--
1.6.0.2


Marcel, thank you for the hint. Sorry for the inconveniences.
Cheers,
--
-vlado
Vladimir Botka



2009-08-26 06:50:59

by Marcel Holtmann

[permalink] [raw]
Subject: Re: [PATCH] fix missing call to closedir

Hi Vladimir,

> ---
> compat/dun.c | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)

patch has been applied. Thanks.

Regards

Marcel



2009-08-25 14:42:27

by Marcel Holtmann

[permalink] [raw]
Subject: Re: [PATCH] fix missing call to closedir

Hi Vladimir,

> From 29e477a29519c4a232ba02b6878beeeaa6d57da6 Mon Sep 17 00:00:00 2001
> From: Vladimir Botka <[email protected]>
> Date: Tue, 25 Aug 2009 13:23:29 +0200
> Subject: [PATCH] fix missing call to closedir

please fix your .gitconfig so we have real email addresses as author and
not some ones with machine names in it.

Regards

Marcel