Hello community,

here is the log from the commit of package texinfo for openSUSE:Factory checked 
in at 2012-11-22 17:25:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/texinfo (Old)
 and      /work/SRC/openSUSE:Factory/.texinfo.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "texinfo", Maintainer is "wer...@suse.com"

Changes:
--------
--- /work/SRC/openSUSE:Factory/texinfo/texinfo.changes  2012-10-06 
18:44:17.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.texinfo.new/texinfo.changes     2012-11-22 
17:25:36.000000000 +0100
@@ -1,0 +2,11 @@
+Tue Nov 20 10:02:54 UTC 2012 - wer...@suse.de
+
+- Use latest CVS version for the last patch
+
+-------------------------------------------------------------------
+Mon Nov 19 14:24:06 UTC 2012 - wer...@suse.de
+
+- Be aware that characters of appendix numbering requires a ASCII
+  null if used as string (bnc#788574)
+
+-------------------------------------------------------------------

New:
----
  texinfo-4.13a-bug788574.diff

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

Other differences:
------------------
++++++ texinfo.spec ++++++
--- /var/tmp/diff_new_pack.fQJKH7/_old  2012-11-22 17:25:38.000000000 +0100
+++ /var/tmp/diff_new_pack.fQJKH7/_new  2012-11-22 17:25:38.000000000 +0100
@@ -61,6 +61,7 @@
 Patch7:         texinfo-4.13a-bug640417.diff
 Patch8:         texinfo-4.13a-bug713517.diff
 Patch9:         automake-1.12.patch
+Patch10:        texinfo-4.13a-bug788574.diff
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -106,6 +107,7 @@
 %patch7 -p1 -b .size_t
 %patch8 -p0 -b .egrep
 %patch9 -p1
+%patch10 -p0 -b .appendix
 %patch -p0
 pushd ../texi2html-%{version_t2h}
 %patch1 -p0


++++++ texinfo-4.13a-bug788574.diff ++++++
--- makeinfo/sectioning.c       2008/09/26 11:56:28     1.30
+++ makeinfo/sectioning.c       2011/01/15 00:23:19     1.32
@@ -256,14 +256,14 @@
     return xstrdup ("");
   else if (enum_marker == APPENDIX_MAGIC)
     {
-      char s[1];
+      char s[2];
       sprintf (s, "%c", numbers[0] + 64);
       return xstrdup (s);
     }
   else
     {
-      char s[5];
-      sprintf (s, "%d", numbers[0]);
+      char s[100];
+      sprintf (s, "%4d", numbers[0]);
       return xstrdup (s);
     }
 }
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to