summaryrefslogtreecommitdiff
path: root/debian/patches/0000-fix-node-leak.patch
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2014-05-26 11:23:49 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2014-05-26 11:23:49 +0200
commit9b25991841464f3206a90949840f409f8e7809f9 (patch)
treee8321aeb9e0bf9c5342f735df40577567edd4836 /debian/patches/0000-fix-node-leak.patch
parentd31dc81b516b9afd479cf9e8709790faca15d1e1 (diff)
drop old patch series
Diffstat (limited to 'debian/patches/0000-fix-node-leak.patch')
-rw-r--r--debian/patches/0000-fix-node-leak.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/patches/0000-fix-node-leak.patch b/debian/patches/0000-fix-node-leak.patch
deleted file mode 100644
index d3f593aa..00000000
--- a/debian/patches/0000-fix-node-leak.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-commit c29aecfba1c854ccaacb66b4fe6424d5af236211
-Author: Justus Winter <4winter@informatik.uni-hamburg.de>
-Date: Sat May 24 20:29:23 2014 +0200
-
- libdiskfs: fix node leak in the name cache
-
- * libdiskfs/name-cache.c (diskfs_check_lookup_cache): Release node
- reference in a special case of lookup failure.
-
-diff --git a/libdiskfs/name-cache.c b/libdiskfs/name-cache.c
-index c113692..a212a6d 100644
---- a/libdiskfs/name-cache.c
-+++ b/libdiskfs/name-cache.c
-@@ -249,6 +249,7 @@ diskfs_check_lookup_cache (struct node *dir, const char *name)
- {
- /* Lose */
- pthread_mutex_unlock (&np->lock);
-+ diskfs_nrele (np);
- return 0;
- }
- }