Hello community,

here is the log from the commit of package udftools for openSUSE:Factory 
checked in at 2011-12-30 08:46:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/udftools (Old)
 and      /work/SRC/openSUSE:Factory/.udftools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "udftools", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/udftools/udftools.changes        2011-12-21 
10:04:09.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.udftools.new/udftools.changes   2011-12-30 
08:46:35.000000000 +0100
@@ -1,0 +2,5 @@
+Tue Dec 27 15:23:24 UTC 2011 - [email protected]
+
+- Fix wrong size parameter in memset call 
+
+-------------------------------------------------------------------

New:
----
  udftools-wrong-memset.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ udftools.spec ++++++
--- /var/tmp/diff_new_pack.oPRJzX/_old  2011-12-30 08:46:36.000000000 +0100
+++ /var/tmp/diff_new_pack.oPRJzX/_new  2011-12-30 08:46:36.000000000 +0100
@@ -15,18 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:           udftools
-BuildRequires:  libtool readline-devel
-License:        GPL v2 or later
-Group:          System/Filesystems
+BuildRequires:  libtool
+BuildRequires:  readline-devel
 Provides:       udf 
 Obsoletes:      udf 
 Version:        1.0.0b3
-Release:        135
+Release:        0
 Summary:        UDF filesystem tools
+License:        GPL-2.0+
+Group:          System/Filesystems
 Source:         %name-%{version}.tar.bz2
 Source1:        
http://www.kernel.org/pub/linux/kernel/people/axboe/tools/cdmrw.c
 Patch:          %name-%{version}.dif
@@ -36,6 +34,7 @@
 Patch4:         cdmrw-include.patch
 Patch5:         udftools-HZ.patch
 Patch6:         udftools-open.patch
+Patch7:         udftools-wrong-memset.patch
 Url:            http://linux-udf.sourceforge.net/
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -60,6 +59,7 @@
 %patch4
 %patch5
 %patch6
+%patch7 -p1
 
 %build
 %__cc $RPM_OPT_FLAGS cdmrw.c -o cdmrw

++++++ udftools-wrong-memset.patch ++++++
Index: udftools-1.0.0b3/mkudffs/mkudffs.c
===================================================================
--- udftools-1.0.0b3.orig/mkudffs/mkudffs.c
+++ udftools-1.0.0b3/mkudffs/mkudffs.c
@@ -42,7 +42,7 @@ void udf_init_disc(struct udf_disc *disc
        struct tm       *tm;
        int             altzone;
 
-       memset(disc, 0x00, sizeof(disc));
+       memset(disc, 0x00, sizeof(struct udf_disc));
 
        disc->blocksize = 2048;
        disc->blocksize_bits = 11;
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to