Your message dated Sun, 05 Nov 2006 20:14:46 -0800
with message-id <[EMAIL PROTECTED]>
and subject line openafs backup-daemon segfaults
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: openafs-client
Version: 1.4.1-4
butc in the openafs-client package segfaults during backup. The problem
is in the source and was reported upstream. Here is the upstream
bugreport for reference:
> Hi,
> in the current debian openafs (
> packet-version: 1.4.1-4,
> source-dir openafs-1.4.2~fc2 )
> the butc segfaults. Reason is an obvious dereferencing bug
> Harald
> (replys cc. to me, i'm not on the list)
--- openafs-1.4.2~fc2/src/util/kreltime.c 2006-07-31
23:12:59.000000000 +0200
+++ ../openafs-1.4.2~fc2/src/util/kreltime.c 2006-10-11
16:53:40.000000000 +0200
@@ -114,22 +114,25 @@
int
ktimeDate_FromInt32(afs_int32 timeSecs, struct ktime_date *ktimePtr)
{
time_t tt = timeSecs;
struct tm *timePtr;
#ifndef AFS_NT40_ENV
struct tm timeP;
timePtr = &timeP;
- memset(&timePtr, 0, sizeof(timePtr));
- localtime_r(&tt, &timePtr);
+ memset(timePtr, 0, sizeof(struct tm));
+ localtime_r(&tt, timePtr);
--- End Message ---
--- Begin Message ---
Version: 1.4.2-2
Thanks, this was fixed in 1.4.2-2.
--
Russ Allbery ([EMAIL PROTECTED]) <http://www.eyrie.org/~eagle/>
--- End Message ---