Your message dated Mon, 22 Jan 2007 18:33:12 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#383793: fixed in libtheora 0.0.0.alpha7.dfsg-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)

--- Begin Message ---
Package: libtheora0
Version: 0.0.0.alpha7-1
Severity: important
Tags: patch

The theora_unpack_comment casts a pointer-to-int to a pointer-to-long,
which breaks badly if ints and longs are different sizes. The attached
patch fixes this.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=nl_BE.UTF-8, LC_CTYPE=nl_BE.UTF-8 (charmap=UTF-8)

Versions of packages libtheora0 depends on:
ii  libc6                        2.3.6.ds1-2 GNU C Library: Shared libraries
ii  libogg0                      1.1.3-2     Ogg Bitstream Library

libtheora0 recommends no packages.

-- no debconf information
--- libtheora-0.0.0.alpha7/lib/toplevel.c       2006-06-13 00:57:36.000000000 
+0200
+++ libtheora-pdw/lib/toplevel.c        2006-08-19 16:55:30.000000000 +0200
@@ -172,7 +172,7 @@
 
 static int _theora_unpack_comment(theora_comment *tc, oggpack_buffer *opb){
   int i;
-  long len;
+  long len,tmp;
 
    _tp_readlsbint(opb,&len);
   if(len<0)return(OC_BADHEADER);
@@ -180,7 +180,8 @@
   _tp_readbuffer(opb,tc->vendor, len);
   tc->vendor[len]='\0';
 
-  _tp_readlsbint(opb,(long *) &tc->comments);
+  _tp_readlsbint(opb,&tmp);
+  tc->comments=tmp;
   if(tc->comments<0)goto parse_err;
   tc->user_comments=_ogg_calloc(tc->comments,sizeof(*tc->user_comments));
   tc->comment_lengths=_ogg_calloc(tc->comments,sizeof(*tc->comment_lengths));

--- End Message ---
--- Begin Message ---
Source: libtheora
Source-Version: 0.0.0.alpha7.dfsg-2

We believe that the bug you reported is fixed in the latest version of
libtheora, which is due to be installed in the Debian FTP archive:

libtheora-dev_0.0.0.alpha7.dfsg-2_i386.deb
  to pool/main/libt/libtheora/libtheora-dev_0.0.0.alpha7.dfsg-2_i386.deb
libtheora0_0.0.0.alpha7.dfsg-2_i386.deb
  to pool/main/libt/libtheora/libtheora0_0.0.0.alpha7.dfsg-2_i386.deb
libtheora_0.0.0.alpha7.dfsg-2.diff.gz
  to pool/main/libt/libtheora/libtheora_0.0.0.alpha7.dfsg-2.diff.gz
libtheora_0.0.0.alpha7.dfsg-2.dsc
  to pool/main/libt/libtheora/libtheora_0.0.0.alpha7.dfsg-2.dsc



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.
Clint Adams <[EMAIL PROTECTED]> (supplier of updated libtheora 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: Mon, 22 Jan 2007 11:22:57 -0500
Source: libtheora
Binary: libtheora-dev libtheora0
Architecture: source i386
Version: 0.0.0.alpha7.dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Xiph.org Maintainers <[EMAIL PROTECTED]>
Changed-By: Clint Adams <[EMAIL PROTECTED]>
Description: 
 libtheora-dev - The Theora Video Compression Codec (development files)
 libtheora0 - The Theora Video Compression Codec
Closes: 383793
Changes: 
 libtheora (0.0.0.alpha7.dfsg-2) unstable; urgency=medium
 .
   * Add upstream_r12376-amd64_unpack_comment_crash.diff to fix
     64-bit cleanness problem.  closes: #383793.
Files: 
 c3b35ca2d5b1f3c6dc2293f4f56fc676 911 libs optional 
libtheora_0.0.0.alpha7.dfsg-2.dsc
 58f64891a0326bf0b35e01b39d40c33d 4600 libs optional 
libtheora_0.0.0.alpha7.dfsg-2.diff.gz
 1044e0272e35918adc932c73462cde29 106040 libs optional 
libtheora0_0.0.0.alpha7.dfsg-2_i386.deb
 eaebc3722f8e0fe6fd8d81adf28249c6 248374 libdevel optional 
libtheora-dev_0.0.0.alpha7.dfsg-2_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Debian!

iD8DBQFFtOfl5m0u66uWM3ARAkS9AKDCyorYFp1vgv9n1W/coorkahOYdACguIZk
vjcbvQ4KMUEOOZHe0m2nbCI=
=0bnE
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to