Hello community,

here is the log from the commit of package ddd for openSUSE:Factory checked in 
at 2012-01-05 13:47:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ddd (Old)
 and      /work/SRC/openSUSE:Factory/.ddd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ddd", Maintainer is "pgaj...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ddd/ddd.changes  2011-11-23 19:34:36.000000000 
+0100
+++ /work/SRC/openSUSE:Factory/.ddd.new/ddd.changes     2012-01-05 
13:47:58.000000000 +0100
@@ -1,0 +2,5 @@
+Tue Dec 27 15:15:02 UTC 2011 - idon...@suse.com
+
+- Fix wrong size parameter in memcpy call 
+
+-------------------------------------------------------------------

New:
----
  ddd-wrong-memcpy.patch

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

Other differences:
------------------
++++++ ddd.spec ++++++
--- /var/tmp/diff_new_pack.azlpsh/_old  2012-01-05 13:47:59.000000000 +0100
+++ /var/tmp/diff_new_pack.azlpsh/_new  2012-01-05 13:47:59.000000000 +0100
@@ -15,18 +15,26 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
-
 Name:           ddd
-BuildRequires:  ImageMagick apache2-devel freetype2-devel gcc-c++ 
ghostscript_any
-BuildRequires:  libapr-util1-devel libtiff-devel openmotif-devel pcre-devel 
transfig
-BuildRequires:  ghostscript-library ncurses-devel update-desktop-files
-License:        GPL-2.0+ ; LGPL-2.1+
-Group:          Development/Tools/Debuggers
+BuildRequires:  ImageMagick
+BuildRequires:  apache2-devel
+BuildRequires:  freetype2-devel
+BuildRequires:  gcc-c++
+BuildRequires:  ghostscript-library
+BuildRequires:  ghostscript_any
+BuildRequires:  libapr-util1-devel
+BuildRequires:  libtiff-devel
+BuildRequires:  ncurses-devel
+BuildRequires:  openmotif-devel
+BuildRequires:  pcre-devel
+BuildRequires:  transfig
+BuildRequires:  update-desktop-files
 Requires:       gdb
 Version:        3.3.12
-Release:        3
+Release:        0
 Summary:        Debugger with Graphical User Interface
+License:        GPL-2.0+ ; LGPL-2.1+
+Group:          Development/Tools/Debuggers
 Url:            http://www.gnu.org/software/ddd
 Source:         ddd-%{version}.tar.bz2
 Source1:        ddd.png
@@ -34,6 +42,7 @@
 Source3:        README.SUSE
 Source4:        ddd.wrapper
 Patch0:         ddd-3.3.12-gcc44.patch
+Patch1:         ddd-wrong-memcpy.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 PreReq:         %install_info_prereq
 # NOTE: We don't want this dependency and desktop-data-SuSE is in all
@@ -47,7 +56,6 @@
 Pascal, MODULA-2, FORTRAN, ADA, and even at the assembler code level.
 
 %package doc
-License:        GPL-2.0+ ; LGPL-2.1+
 Summary:        Debugger with Graphical User Interface
 Group:          Development/Tools/Debuggers
 %if %suse_version > 1110
@@ -64,6 +72,7 @@
 %define apache_docroot %(apxs2 -q PREFIX)/htdocs
 %setup -q
 %patch0
+%patch1 -p1
 
 %build
 cp %{S:3} .

++++++ ddd-wrong-memcpy.patch ++++++
Index: ddd-3.3.12/ddd/ddd.C
===================================================================
--- ddd-3.3.12.orig/ddd/ddd.C
+++ ddd-3.3.12/ddd/ddd.C
@@ -5822,7 +5822,7 @@ struct WhenReadyInfo {
        }
        else
        {
-           memcpy(cbs.event, c.event, sizeof(cbs.event));
+           memcpy(cbs.event, c.event, sizeof(XEvent));
            cbs.event = &event;
        }
     }

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to