Hello community, here is the log from the commit of package jasper checked in at Tue May 23 01:10:15 CEST 2006. -------- --- jasper/jasper.changes 2006-01-25 21:36:46.000000000 +0100 +++ jasper/jasper.changes 2006-05-22 13:51:19.000000000 +0200 @@ -1,0 +2,6 @@ +Mon May 22 13:49:45 CEST 2006 - pnemec@suse.cz + +- fixed uninitialized varibale #176395 + added -uninitialzed.patch + +------------------------------------------------------------------- New: ---- jasper-1.701.0-uninitialized.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jasper.spec ++++++ --- /var/tmp/diff_new_pack.8GzSCT/_old 2006-05-23 01:10:10.000000000 +0200 +++ /var/tmp/diff_new_pack.8GzSCT/_new 2006-05-23 01:10:10.000000000 +0200 @@ -1,11 +1,11 @@ # # spec file for package jasper (Version 1.701.0) # -# Copyright (c) 2004 SUSE LINUX AG, Nuernberg, Germany. +# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # -# Please submit bugfixes or comments via http://www.suse.de/feedback/ +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild @@ -13,18 +13,19 @@ Name: jasper BuildRequires: freeglut-devel libdrm-devel libjpeg-devel libstdc++-devel URL: http://www.ece.uvic.ca/~mdadams/jasper/ -License: Other License(s), see package +License: distributable, Other License(s), see package Group: System/Libraries Autoreqprov: on Version: 1.701.0 -Release: 1 -Summary: implementation of the JPEG-2000 standard, Part 1 +Release: 16 +Summary: An Implementation of the JPEG-2000 Standard, Part 1 Source: %{name}-%{version}.tar.bz2 +Patch: %{name}-%{version}-uninitialized.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description This package contains an implementation of the image compression -standard JPEG-2000, Part 1. It consists of tools for conversion to and +standard, JPEG-2000, Part 1. It consists of tools for conversion to and from the JP2 and JPC formats. @@ -49,6 +50,7 @@ %prep %setup -q +%patch %build %{suse_update_config} @@ -83,6 +85,9 @@ %{_libdir}/libjasper-*.so* %changelog -n jasper +* Mon May 22 2006 - pnemec@suse.cz +- fixed uninitialized varibale #176395 + added -uninitialzed.patch * Wed Jan 25 2006 - mls@suse.de - converted neededforbuild to BuildRequires * Mon Jun 14 2004 - sbrabec@suse.cz ++++++ jasper-1.701.0-uninitialized.patch ++++++ --- src/libjasper/pnm/pnm_enc.c +++ src/libjasper/pnm/pnm_enc.c @@ -424,7 +424,7 @@ static int pnm_putuint(jas_stream_t *out, int wordsize, uint_fast32_t *val) { int n; - uint_fast32_t tmpval; + uint_fast32_t tmpval=0; int c; n = (wordsize + 7) / 8; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de