[Bug 475546] Re: Memory leaks in version 1.6.dfsg.3~beta1-2ubuntu1.1
Dan Searle
dan at censornet.com
Tue Nov 10 11:16:13 GMT 2009
Why is this seen as "low" priotiry, it's causing no end of problems for
some of our servers running out of memory, I have to restart the
effected daemons twice a day, which is a pretty ugly, I have confirmed
the patch I submitted from the krb5dev at mit.edu mailing list does work.
All you have to do is apply this patch:
--- ./src/lib/krb5/rcache/rc_none.c 2004-08-04 07:58:17.000000000 +0100
+++ ./src/lib/krb5/rcache/rc_none.c 2009-11-09 09:14:43.000000000 +0000
@@ -43,11 +43,17 @@
return 0;
}
#define krb5_rc_none_recover krb5_rc_none_noargs
-#define krb5_rc_none_destroy krb5_rc_none_noargs
-#define krb5_rc_none_close krb5_rc_none_noargs
#define krb5_rc_none_expunge krb5_rc_none_noargs
static krb5_error_code KRB5_CALLCONV
+krb5_rc_none_close(krb5_context ctx, krb5_rcache rc)
+{
+ free (rc);
+ return 0;
+}
+#define krb5_rc_none_destroy krb5_rc_none_close
+
+static krb5_error_code KRB5_CALLCONV
krb5_rc_none_store(krb5_context ctx, krb5_rcache rc, krb5_donot_replay *r)
{
return 0;
I tried to make a new libkrb53 package myself, but there are lots of
interdependencies which mean I would have to remake lots of other
packages. Please apply this patch and update the official Hardy
repository ASAP.
--
Memory leaks in version 1.6.dfsg.3~beta1-2ubuntu1.1
https://bugs.launchpad.net/bugs/475546
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in ubuntu.
More information about the Ubuntu-server-bugs
mailing list