[pkg-java] r12045 - trunk/fop/debian/patches

Mathieu Malaterre malat-guest at alioth.debian.org
Sat Apr 10 13:19:49 UTC 2010


Author: malat-guest
Date: 2010-04-10 13:19:42 +0000 (Sat, 10 Apr 2010)
New Revision: 12045

Added:
   trunk/fop/debian/patches/03_fix_tablecol.patch
Modified:
   trunk/fop/debian/patches/series
Log:
Add patch for resolving issue #577069

Added: trunk/fop/debian/patches/03_fix_tablecol.patch
===================================================================
--- trunk/fop/debian/patches/03_fix_tablecol.patch	                        (rev 0)
+++ trunk/fop/debian/patches/03_fix_tablecol.patch	2010-04-10 13:19:42 UTC (rev 12045)
@@ -0,0 +1,14 @@
+Description: Avoid StackOverflow on TableColumn.toString() during debugging.
+Author: Mathieu Malaterre <mathieu.malaterre at gmail.com>
+Bug: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/table/TableColumn.java?r1=670335&r2=670334&pathrev=670335
+--- trunk/src/java/org/apache/fop/fo/flow/table/TableColumn.java	2008/06/22 10:37:24	670334
++++ trunk/src/java/org/apache/fop/fo/flow/table/TableColumn.java	2008/06/22 10:53:51	670335
+@@ -239,7 +239,7 @@
+             sb.append(" number-columns-spanned=")
+                 .append(getNumberColumnsSpanned());
+         }
+-        sb.append(" column-width=").append(getColumnWidth());
++        sb.append(" column-width=").append(((Property)getColumnWidth()).getString());
+         return sb.toString();
+     }
+


Property changes on: trunk/fop/debian/patches/03_fix_tablecol.patch
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native

Modified: trunk/fop/debian/patches/series
===================================================================
--- trunk/fop/debian/patches/series	2010-04-08 21:23:54 UTC (rev 12044)
+++ trunk/fop/debian/patches/series	2010-04-10 13:19:42 UTC (rev 12045)
@@ -1,2 +1,3 @@
 01_from_svn_16_bit_alpha_png.patch
 02_fix_segfault_with_anchors.patch
+03_fix_tablecol.patch




More information about the pkg-java-commits mailing list