Your message dated Thu, 21 Apr 2005 10:32:57 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#303518: fixed in mozilla-firefox 1.0.3-2
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; 7 Apr 2005 06:47:40 +0000
>From [EMAIL PROTECTED] Wed Apr 06 23:47:40 2005
Return-path: <[EMAIL PROTECTED]>
Received: from adsl-66-127-195-58.dsl.snfc21.pacbell.net (panda.mostang.com)
[66.127.195.58]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DJQnk-0002eg-00; Wed, 06 Apr 2005 23:47:40 -0700
Received: by panda.mostang.com (Postfix, from userid 199)
id 10261D4080; Wed, 6 Apr 2005 23:47:09 -0700 (PDT)
Content-Type: multipart/mixed; boundary="===============2031057199970727386=="
MIME-Version: 1.0
From: David Mosberger-Tang <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: mozilla-firefox: causes unaligned accesses
X-Mailer: reportbug 3.8
Date: Wed, 06 Apr 2005 23:47:09 -0700
Message-Id: <[EMAIL PROTECTED]>
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:
This is a multi-part MIME message sent by reportbug.
--===============2031057199970727386==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: mozilla-firefox
Version: 1.0.2-1
Severity: normal
Tags: patch
See this upstream bugreport for details:
https://bugzilla.mozilla.org/show_bug.cgi?id=289394
For convenience, I'm attaching the patch to fix this problem below.
Thanks.
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing'), (50, 'unstable')
Architecture: ia64
Kernel: Linux 2.6.11
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages mozilla-firefox depends on:
ii debianutils 2.8.4 Miscellaneous utilities specific t
ii fontconfig 2.3.1-2 generic font configuration library
ii libatk1.0-0 1.8.0-4 The ATK accessibility toolkit
ii libc6.1 2.3.2.ds1-20 GNU C Library: Shared libraries an
ii libfontconfig1 2.3.1-2 generic font configuration library
ii libfreetype6 2.1.7-2.3 FreeType 2 font engine, shared lib
ii libgcc1 1:3.4.3-12 GCC support library
ii libglib2.0-0 2.6.3-1 The GLib library of C routines
ii libgtk2.0-0 2.6.2-4 The GTK+ graphical user interface
ii libidl0 0.8.5-1 library for parsing CORBA IDL file
ii libjpeg62 6b-9 The Independent JPEG Group's JPEG
ii libkrb53 1.3.6-1 MIT Kerberos runtime libraries
ii libpango1.0-0 1.8.1-1 Layout and rendering of internatio
ii libpng12-0 1.2.8rel-1 PNG library - runtime
ii libstdc++5 1:3.3.5-8 The GNU Standard C++ Library v3
ii libx11-6 4.3.0.dfsg.1-12 X Window System protocol client li
ii libxext6 4.3.0.dfsg.1-12 X Window System miscellaneous exte
ii libxft2 2.1.2-6 FreeType-based font drawing librar
ii libxp6 4.3.0.dfsg.1-12 X Window System printing extension
ii libxt6 4.3.0.dfsg.1-12 X Toolkit Intrinsics
ii psmisc 21.5-1 Utilities that use the proc filesy
ii xlibs 4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii zlib1g 1:1.2.2-3 compression library - runtime
-- no debconf information
--===============2031057199970727386==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="firefox-misalign-fix.diff"
diff -urN mozilla-firefox-1.0.2/extensions/transformiix/source/base/Double.cpp
mozilla-firefox-1.0.2-fixed/extensions/transformiix/source/base/Double.cpp
--- mozilla-firefox-1.0.2/extensions/transformiix/source/base/Double.cpp
2004-01-15 13:23:18.000000000 -0800
+++ mozilla-firefox-1.0.2-fixed/extensions/transformiix/source/base/Double.cpp
2005-04-06 22:27:28.000000000 -0700
@@ -74,14 +74,7 @@
#define CPU_IS_ARM
#endif
-#if (__GNUC__ == 2 && __GNUC_MINOR__ > 95) || __GNUC__ > 2
-/**
- * This version of the macros is safe for the alias optimizations
- * that gcc does, but uses gcc-specific extensions.
- */
-
typedef union txdpun {
- PRFloat64 d;
struct {
#if defined(IS_LITTLE_ENDIAN) && !defined(CPU_IS_ARM)
PRUint32 lo, hi;
@@ -89,8 +82,14 @@
PRUint32 hi, lo;
#endif
} s;
+ PRFloat64 d;
} txdpun;
+#if (__GNUC__ == 2 && __GNUC_MINOR__ > 95) || __GNUC__ > 2
+/**
+ * This version of the macros is safe for the alias optimizations
+ * that gcc does, but uses gcc-specific extensions.
+ */
#define TX_DOUBLE_HI32(x) (__extension__ ({ txdpun u; u.d = (x); u.s.hi; }))
#define TX_DOUBLE_LO32(x) (__extension__ ({ txdpun u; u.d = (x); u.s.lo; }))
@@ -116,15 +115,15 @@
//-- Initialize Double related constants
#ifdef IS_BIG_ENDIAN
-const PRUint32 nanMask[2] = {TX_DOUBLE_HI32_EXPMASK |
TX_DOUBLE_HI32_MANTMASK,
+const txdpun nanMask = {TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_MANTMASK,
0xffffffff};
-const PRUint32 infMask[2] = {TX_DOUBLE_HI32_EXPMASK, 0};
-const PRUint32 negInfMask[2] = {TX_DOUBLE_HI32_EXPMASK |
TX_DOUBLE_HI32_SIGNBIT, 0};
+const txdpun infMask = {TX_DOUBLE_HI32_EXPMASK, 0};
+const txdpun negInfMask = {TX_DOUBLE_HI32_EXPMASK | TX_DOUBLE_HI32_SIGNBIT, 0};
#else
-const PRUint32 nanMask[2] = {0xffffffff,
+const txdpun nanMask[2] = {0xffffffff,
TX_DOUBLE_HI32_EXPMASK |
TX_DOUBLE_HI32_MANTMASK};
-const PRUint32 infMask[2] = {0, TX_DOUBLE_HI32_EXPMASK};
-const PRUint32 negInfMask[2] = {0, TX_DOUBLE_HI32_EXPMASK |
TX_DOUBLE_HI32_SIGNBIT};
+const txdpun infMask[2] = {0, TX_DOUBLE_HI32_EXPMASK};
+const txdpun negInfMask[2] = {0, TX_DOUBLE_HI32_EXPMASK |
TX_DOUBLE_HI32_SIGNBIT};
#endif
const double Double::NaN = *((double*)nanMask);
--===============2031057199970727386==--
---------------------------------------
Received: (at 303518-close) by bugs.debian.org; 21 Apr 2005 14:40:08 +0000
>From [EMAIL PROTECTED] Thu Apr 21 07:40:07 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 1DOcqd-00080S-00; Thu, 21 Apr 2005 07:40:07 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DOcjh-000753-00; Thu, 21 Apr 2005 10:32:57 -0400
From: Eric Dorland <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#303518: fixed in mozilla-firefox 1.0.3-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Thu, 21 Apr 2005 10:32:57 -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:
X-CrossAssassin-Score: 2
Source: mozilla-firefox
Source-Version: 1.0.3-2
We believe that the bug you reported is fixed in the latest version of
mozilla-firefox, which is due to be installed in the Debian FTP archive:
mozilla-firefox-dom-inspector_1.0.3-2_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox-dom-inspector_1.0.3-2_i386.deb
mozilla-firefox-gnome-support_1.0.3-2_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox-gnome-support_1.0.3-2_i386.deb
mozilla-firefox_1.0.3-2.diff.gz
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.3-2.diff.gz
mozilla-firefox_1.0.3-2.dsc
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.3-2.dsc
mozilla-firefox_1.0.3-2_i386.deb
to pool/main/m/mozilla-firefox/mozilla-firefox_1.0.3-2_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.
Eric Dorland <[EMAIL PROTECTED]> (supplier of updated mozilla-firefox 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: Thu, 21 Apr 2005 01:25:02 -0400
Source: mozilla-firefox
Binary: mozilla-firefox mozilla-firefox-gnome-support
mozilla-firefox-dom-inspector
Architecture: source i386
Version: 1.0.3-2
Distribution: unstable
Urgency: high
Maintainer: Eric Dorland <[EMAIL PROTECTED]>
Changed-By: Eric Dorland <[EMAIL PROTECTED]>
Description:
mozilla-firefox - lightweight web browser based on Mozilla
mozilla-firefox-dom-inspector - tool for inspecting the DOM of pages in
Mozilla Firefox
mozilla-firefox-gnome-support - Support for Gnome in Mozilla Firefox
Closes: 303515 303518
Changes:
mozilla-firefox (1.0.3-2) unstable; urgency=high
.
* browser/app/profile/firefox.js: Disable SSLv2 and 40-bit ciphers by
default.
* debian/mozilla-firefox.NEWS: Explain the SSL change.
* extensions/transformiix/source/base/Double.cpp: Patch from David
Mosberger-Tang (fixed up by me) to fix unaligned access on ia64 (and
perhaps other platforms). (Closes: #303518)
* xpcom/reflect/xptcall/public/xptcstubsdecl.inc,
xpcom/reflect/xptcall/src/md/unix/xptcstubs_asm_ipf64.s,
xpcom/reflect/xptcall/src/md/unix/xptcstubs_ipf64.cpp: Another patch
from David Mosberger-Tang to fix extension loading on ia64. (Closes:
#303515)
Files:
69f99f757b4326ccf92d51dd1c598d34 990 web optional mozilla-firefox_1.0.3-2.dsc
07c2b98d0efef3a0931d49ab96504b27 224297 web optional
mozilla-firefox_1.0.3-2.diff.gz
022332810a9bc4a127ebbfcfa94ed43b 8880458 web optional
mozilla-firefox_1.0.3-2_i386.deb
f54b8ad22736f885dfde5e83fa4fb749 154638 web optional
mozilla-firefox-dom-inspector_1.0.3-2_i386.deb
fe82869743a951b87b6b916ee7d03ded 51918 web optional
mozilla-firefox-gnome-support_1.0.3-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCZ7EXYemOzxbZcMYRAsW6AJ9mxpnr6l4RpWww9xTPn74S6QKeOwCdFYUu
C+wtyOubNBPR8vCHjb4XMEs=
=mbOu
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]