diff options
Diffstat (limited to 'package/keyutils/keyutils-02-another-memleak.patch')
-rw-r--r-- | package/keyutils/keyutils-02-another-memleak.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/keyutils/keyutils-02-another-memleak.patch b/package/keyutils/keyutils-02-another-memleak.patch deleted file mode 100644 index f74fd79ba5..0000000000 --- a/package/keyutils/keyutils-02-another-memleak.patch +++ /dev/null @@ -1,32 +0,0 @@ -Patch vampirised from Debian's packaging of keyutils-1.4 - -Author: Michael Gebetsroither <gebi@grml.org> -Description: Fixed another memleak (Closes: #496466). - -diff -Naurp keyutils.orig/keyutils.c keyutils/keyutils.c ---- keyutils.orig/keyutils.c 2008-08-09 21:46:52.000000000 +0200 -+++ keyutils/keyutils.c 2008-08-25 13:38:25.000000000 +0200 -@@ -187,8 +187,10 @@ int keyctl_describe_alloc(key_serial_t i - - for (;;) { - ret = keyctl_describe(id, buf, buflen); -- if (ret < 0) -+ if (ret < 0) { -+ free(buf); - return -1; -+ } - - if (buflen >= ret) - break; -@@ -226,8 +228,10 @@ int keyctl_read_alloc(key_serial_t id, v - - for (;;) { - ret = keyctl_read(id, buf, buflen); -- if (ret < 0) -+ if (ret < 0) { -+ free(buf); - return -1; -+ } - - if (buflen >= ret) - break; |