git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
8469197
)
vclosevnodefiles-ihandle-leak-20090216
author
Jeffrey Altman
<jaltman@secure-endpoints.com>
Tue, 17 Feb 2009 04:37:27 +0000 (
04:37
+0000)
committer
Derrick Brashear
<shadow@dementia.org>
Tue, 17 Feb 2009 04:37:27 +0000 (
04:37
+0000)
LICENSE IPL10
FIXES 124359
don't leak ihandles on close. this isn't a complete fix for the issue
src/vol/vnode.c
patch
|
blob
|
history
diff --git
a/src/vol/vnode.c
b/src/vol/vnode.c
index
10bbfc3
..
8f0ab80
100644
(file)
--- a/
src/vol/vnode.c
+++ b/
src/vol/vnode.c
@@
-1667,6
+1667,7
@@
VCloseVnodeFiles_r(Volume * vp)
for (i = 0; i < vec_len; i++) {
IH_REALLYCLOSE(ih_vec[i]);
+ IH_RELEASE(ih_vec[i]);
}
free(ih_vec);