Your message dated Wed, 13 Jul 2005 03:17:07 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#305597: fixed in evolution-data-server 1.2.3-1
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)
--------------------------------------
Received: (at submit) by bugs.debian.org; 21 Apr 2005 00:08:27 +0000
>From [EMAIL PROTECTED] Wed Apr 20 17:08:27 2005
Return-path: <[EMAIL PROTECTED]>
Received: from palrel10.hp.com [156.153.255.245]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DOOxM-0002li-00; Wed, 20 Apr 2005 16:50:08 -0700
Received: from hplms2.hpl.hp.com (hplms2.hpl.hp.com [15.0.152.33])
(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
(No client certificate requested)
by palrel10.hp.com (Postfix) with ESMTP id 069E41B4C
for <[EMAIL PROTECTED]>; Wed, 20 Apr 2005 16:50:07 -0700 (PDT)
Received: from napali.hpl.hp.com (napali.hpl.hp.com [15.4.89.123])
by hplms2.hpl.hp.com (8.13.1/8.13.1/HPL-PA Hub) with ESMTP id
j3KNo0Dd022396
for <[EMAIL PROTECTED]>; Wed, 20 Apr 2005 16:50:01 -0700 (PDT)
Received: from napali.hpl.hp.com (napali [127.0.0.1])
by napali.hpl.hp.com (8.13.3/8.13.3/Debian-9) with ESMTP id
j3KNnvMq029682
for <[EMAIL PROTECTED]>; Wed, 20 Apr 2005 16:49:57 -0700
Received: (from [EMAIL PROTECTED])
by napali.hpl.hp.com (8.13.3/8.13.3/Submit) id j3KNnvMc029679;
Wed, 20 Apr 2005 16:49:57 -0700
Message-ID: <[EMAIL PROTECTED]>
Date: Wed, 20 Apr 2005 16:49:57 -0700
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: David Mosberger <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: evolution-data-server1.2: crash on ia64 when clicking on "reply" in
evolution mailer
X-Mailer: reportbug 3.9
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: evolution-data-server1.2
Version: 1.2.2-2
Severity: important
Tags: patch
The patch below fixes bug 304708 but since the real culprit is
evolution-data-server1.2, I thought it's better to file it here.
Briefly, clicking on "reply" in the evolution mailer causes crashes on
ia64. This is due to several functions which return pointers not
being declared explicitly. This causes the compiler to assume they're
returning "int" and hence the top 32 bits of the pointer are lost.
The patch below also fixes a bug in the LDAP backend where there is a
return without a value. I don't know if this can cause real issues,
but clearly the existing code is wrong.
diff -urN -x Makefile -x '*log' -x config.status
evolution-data-server1.2-1.2.2/addressbook/backends/ldap/e-book-backend-ldap.c
evolution-data-server1.2-1.2.2-davidm/addressbook/backends/ldap/e-book-backend-ldap.c
---
evolution-data-server1.2-1.2.2/addressbook/backends/ldap/e-book-backend-ldap.c
2005-03-06 06:56:37.000000000 -0800
+++
evolution-data-server1.2-1.2.2-davidm/addressbook/backends/ldap/e-book-backend-ldap.c
2005-04-20 16:23:48.000000000 -0700
@@ -594,7 +594,7 @@
struct timeval timeout;
if (!ldap)
- return;
+ return LDAP_UNAVAILABLE;
attrs[i++] = "supportedControl";
attrs[i++] = "supportedExtension";
diff -urN -x Makefile -x '*log' -x config.status
evolution-data-server1.2-1.2.2/camel/providers/groupwise/camel-groupwise-folder.c
evolution-data-server1.2-1.2.2-davidm/camel/providers/groupwise/camel-groupwise-folder.c
---
evolution-data-server1.2-1.2.2/camel/providers/groupwise/camel-groupwise-folder.c
2005-03-14 17:26:40.000000000 -0800
+++
evolution-data-server1.2-1.2.2-davidm/camel/providers/groupwise/camel-groupwise-folder.c
2005-04-20 15:56:30.000000000 -0700
@@ -44,6 +44,7 @@
#include "camel-groupwise-journal.h"
#include "camel-groupwise-utils.h"
#include "camel-stream-mem.h"
+#include "camel-string-utils.h"
#include <e-gw-connection.h>
#include <e-gw-item.h>
diff -urN -x Makefile -x '*log' -x config.status
evolution-data-server1.2-1.2.2/libedataserverui/e-name-selector-dialog.c
evolution-data-server1.2-1.2.2-davidm/libedataserverui/e-name-selector-dialog.c
--- evolution-data-server1.2-1.2.2/libedataserverui/e-name-selector-dialog.c
2005-02-28 07:10:27.000000000 -0800
+++
evolution-data-server1.2-1.2.2-davidm/libedataserverui/e-name-selector-dialog.c
2005-04-20 15:53:19.000000000 -0700
@@ -26,16 +26,20 @@
#include <gdk/gdkkeysyms.h>
#include <gtk/gtkalignment.h>
#include <gtk/gtkbutton.h>
+#include <gtk/gtkcellrenderertext.h>
#include <gtk/gtkentry.h>
+#include <gtk/gtkhbox.h>
#include <gtk/gtklabel.h>
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtkstock.h>
+#include <gtk/gtktreeselection.h>
#include <glib/gi18n-lib.h>
#include <libedataserverui/e-source-option-menu.h>
#include <libedataserverui/e-destination-store.h>
#include <libedataserverui/e-contact-store.h>
#include <libedataserverui/e-book-auth-util.h>
#include "e-name-selector-dialog.h"
+#include "libedataserver/e-sexp.h"
typedef struct {
gchar *name;
-- System Information:
Debian Release: 3.1
APT prefers unstable
APT policy: (990, 'unstable')
Architecture: ia64
Kernel: Linux 2.6.12-rc2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages evolution-data-server1.2 depends on:
ii libaudiofile0 0.2.6-6 Open-source version of SGI's audio
ii libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii libc6.1 2.3.2.ds1-21 GNU C Library: Shared libraries an
ii libcamel1.2-0 1.2.2-2 The Evolution MIME message handlin
ii libebook1.2-3 1.2.2-2 Client library for evolution addre
ii libecal1.2-2 1.2.2-2 Client library for evolution calen
ii libedata-book1.2-2 1.2.2-2 Backend library for evolution addr
ii libedata-cal1.2-1 1.2.2-2 Backend library for evolution cale
ii libedataserver1.2-4 1.2.2-2 Utily library for evolution data s
ii libegroupwise1.2-5 1.2.2-2 Client library for accessing group
ii libesd0 0.2.35-2 Enlightened Sound Daemon - Shared
ii libgconf2-4 2.8.1-5 GNOME configuration database syste
ii libgcrypt11 1.2.0-11 LGPL Crypto library - runtime libr
ii libglib2.0-0 2.6.4-1 The GLib library of C routines
ii libgnome2-0 2.8.1-2 The GNOME 2 library - runtime file
ii libgnomevfs2-0 2.8.4-2 The GNOME virtual file-system libr
ii libgnutls11 1.0.16-13 GNU TLS library - runtime library
ii libgpg-error0 1.0-1 library for common error values an
ii libldap2 2.1.30-6 OpenLDAP libraries
ii liborbit2 1:2.12.2-1 libraries for ORBit2 - a CORBA ORB
ii libpopt0 1.7-5 lib for parsing cmdline parameters
ii libsoup2.2-7 2.2.3-2 an HTTP library implementation in
ii libtasn1-2 0.2.10-4 Manage ASN.1 structures (runtime)
ii libxml2 2.6.16-7 GNOME XML library
ii zlib1g 1:1.2.2-4 compression library - runtime
-- no debconf information
---------------------------------------
Received: (at 305597-close) by bugs.debian.org; 13 Jul 2005 07:23:04 +0000
>From [EMAIL PROTECTED] Wed Jul 13 00:23:04 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DsbaB-0004VR-00; Wed, 13 Jul 2005 00:23:03 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DsbUR-0005e1-00; Wed, 13 Jul 2005 03:17:07 -0400
From: Takuo KITAME <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#305597: fixed in evolution-data-server 1.2.3-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 13 Jul 2005 03:17:07 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: evolution-data-server
Source-Version: 1.2.3-1
We believe that the bug you reported is fixed in the latest version of
evolution-data-server, which is due to be installed in the Debian FTP archive:
evolution-data-server-dev_1.2.3-1_i386.deb
to
pool/main/e/evolution-data-server/evolution-data-server-dev_1.2.3-1_i386.deb
evolution-data-server_1.2.3-1.diff.gz
to pool/main/e/evolution-data-server/evolution-data-server_1.2.3-1.diff.gz
evolution-data-server_1.2.3-1.dsc
to pool/main/e/evolution-data-server/evolution-data-server_1.2.3-1.dsc
evolution-data-server_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/evolution-data-server_1.2.3-1_i386.deb
evolution-data-server_1.2.3.orig.tar.gz
to pool/main/e/evolution-data-server/evolution-data-server_1.2.3.orig.tar.gz
libcamel1.2-0_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libcamel1.2-0_1.2.3-1_i386.deb
libcamel1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libcamel1.2-dev_1.2.3-1_i386.deb
libebook1.2-3_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libebook1.2-3_1.2.3-1_i386.deb
libebook1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libebook1.2-dev_1.2.3-1_i386.deb
libecal1.2-2_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libecal1.2-2_1.2.3-1_i386.deb
libecal1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libecal1.2-dev_1.2.3-1_i386.deb
libedata-book1.2-2_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedata-book1.2-2_1.2.3-1_i386.deb
libedata-book1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedata-book1.2-dev_1.2.3-1_i386.deb
libedata-cal1.2-1_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedata-cal1.2-1_1.2.3-1_i386.deb
libedata-cal1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedata-cal1.2-dev_1.2.3-1_i386.deb
libedataserver1.2-4_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedataserver1.2-4_1.2.3-1_i386.deb
libedataserver1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedataserver1.2-dev_1.2.3-1_i386.deb
libedataserverui1.2-4_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedataserverui1.2-4_1.2.3-1_i386.deb
libedataserverui1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libedataserverui1.2-dev_1.2.3-1_i386.deb
libegroupwise1.2-5_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libegroupwise1.2-5_1.2.3-1_i386.deb
libegroupwise1.2-dev_1.2.3-1_i386.deb
to pool/main/e/evolution-data-server/libegroupwise1.2-dev_1.2.3-1_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Takuo KITAME <[EMAIL PROTECTED]> (supplier of updated evolution-data-server
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Wed, 13 Jul 2005 14:29:57 +0900
Source: evolution-data-server
Binary: libcamel1.2-0 libedataserver1.2-dev libedata-cal1.2-dev libecal1.2-dev
libegroupwise1.2-5 libedata-cal1.2-1 libcamel1.2-dev libedataserverui1.2-4
evolution-data-server libebook1.2-3 libedata-book1.2-2 libedataserver1.2-4
libedata-book1.2-dev libedataserverui1.2-dev evolution-data-server-dev
libecal1.2-2 libegroupwise1.2-dev libebook1.2-dev
Architecture: source i386
Version: 1.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Takuo KITAME <[EMAIL PROTECTED]>
Changed-By: Takuo KITAME <[EMAIL PROTECTED]>
Description:
evolution-data-server - evolution database backend server
evolution-data-server-dev - Development files for evolution-data-server (meta
package)
libcamel1.2-0 - The Evolution MIME message handling library
libcamel1.2-dev - Development files for libcamel
libebook1.2-3 - Client library for evolution address books
libebook1.2-dev - Client library for evolution address books (development
files)
libecal1.2-2 - Client library for evolution calendars
libecal1.2-dev - Client library for evolution calendars (development files)
libedata-book1.2-2 - Backend library for evolution address books
libedata-book1.2-dev - Backend library for evolution address books
(development files)
libedata-cal1.2-1 - Backend library for evolution calendars
libedata-cal1.2-dev - Backend library for evolution calendars (development
files)
libedataserver1.2-4 - Utily library for evolution data servers
libedataserver1.2-dev - Utility library for evolution data servers
(development files)
libedataserverui1.2-4 - GUI utily library for evolution data servers
libedataserverui1.2-dev - GUI utility library for evolution data servers
(development files
libegroupwise1.2-5 - Client library for accessing groupwise POA through SOAP
interface
libegroupwise1.2-dev - Development files for libegroupwise
Closes: 305597 308927 317175
Changes:
evolution-data-server (1.2.3-1) unstable; urgency=low
.
* New upstream release
* enable GSSAPI. (closes: Bug#317175)
* close bugs which fixed in 1.2.2-6 (closes: #305597, #308927)
Files:
9781e4dd84e360846a391dfff6993e06 1147 gnome optional
evolution-data-server_1.2.3-1.dsc
f8442ee1b81170d322007e32e215fb70 19560696 gnome optional
evolution-data-server_1.2.3.orig.tar.gz
fe005faf3f3db1c6f63a95961787f750 30534 gnome optional
evolution-data-server_1.2.3-1.diff.gz
e9464cb3a8e94f53f18ddabad63530b1 1851838 gnome optional
evolution-data-server_1.2.3-1_i386.deb
d54be6c6736af88edbfc418b6b00e223 29828 devel optional
evolution-data-server-dev_1.2.3-1_i386.deb
f71998ace7ba682205c50e1542994871 96478 libs optional
libedataserver1.2-4_1.2.3-1_i386.deb
30ea40c3d7acd4b58a10ea26e7b7c320 43156 libdevel optional
libedataserver1.2-dev_1.2.3-1_i386.deb
ee95965fb43d1da90afa5713b5260cea 82976 libs optional
libedataserverui1.2-4_1.2.3-1_i386.deb
29303d60049b16c980cf022794a213c5 35874 libdevel optional
libedataserverui1.2-dev_1.2.3-1_i386.deb
67d5a38b815552f9401291ee1812f5ce 100578 libs optional
libebook1.2-3_1.2.3-1_i386.deb
033c3aa28f395c7e125f9159b2432de2 50016 libdevel optional
libebook1.2-dev_1.2.3-1_i386.deb
3e2100dc3ff4311383434543a9e992b3 66336 libs optional
libedata-book1.2-2_1.2.3-1_i386.deb
861ecc25e4601bb77ec64128bfb2101b 44292 libdevel optional
libedata-book1.2-dev_1.2.3-1_i386.deb
3a1bb599cd9607d785043ba983b138ad 256422 libs optional
libecal1.2-2_1.2.3-1_i386.deb
81d376c1bd3c102bc2316c97df36943a 93588 libdevel optional
libecal1.2-dev_1.2.3-1_i386.deb
f12815c174799e9df8450f36f507eda7 74900 libs optional
libedata-cal1.2-1_1.2.3-1_i386.deb
34e7d3d069527ef85adb41b36e7f7ece 48288 libdevel optional
libedata-cal1.2-dev_1.2.3-1_i386.deb
1a215f45e3c7307845ce1e661c36611c 70760 libs optional
libegroupwise1.2-5_1.2.3-1_i386.deb
db609ac3ee6122701928f9f30a4e1b3c 35330 libdevel optional
libegroupwise1.2-dev_1.2.3-1_i386.deb
f192e7dcd17d2aa640f63297abd492d8 518456 libdevel optional
libcamel1.2-0_1.2.3-1_i386.deb
b643ecb8dcd3d30e9492cf55b8959963 92076 libdevel optional
libcamel1.2-dev_1.2.3-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFC1LdLU+WZW1FVMwoRAtMCAJ4ndc3w+JqlusTdQ4jS9O9z/ilwswCffH/s
aNkxfA4G4vym2vBqInAiedg=
=rjdl
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]