Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 278186 | Differences between
and this patch

Collapse All | Expand All

(-)a/htmldoc/htmllib.cxx (-1 / +1 lines)
Lines 2139-2145 Link Here
2139
	  * assigned charset...
2139
	  * assigned charset...
2140
	  */
2140
	  */
2141
2141
2142
          if (sscanf(line, "%*s%*s%*s%*s%f%*s%*s%s", &width, glyph) != 2)
2142
          if (sscanf(line, "%*s%*s%*s%*s%f%*s%*s%63s", &width, glyph) != 2)
2143
	    continue;
2143
	    continue;
2144
2144
2145
          for (ch = 0; ch < 256; ch ++)
2145
          for (ch = 0; ch < 256; ch ++)
(-)a/htmldoc/ps-pdf.cxx (-1 / +1 lines)
Lines 12512-12518 Link Here
12512
	  * assigned charset...
12512
	  * assigned charset...
12513
	  */
12513
	  */
12514
12514
12515
	  if (sscanf(line, "%*s%*s%*s%*s%d%*s%*s%s", &width, glyph) != 2)
12515
	  if (sscanf(line, "%*s%*s%*s%*s%d%*s%*s%63s", &width, glyph) != 2)
12516
	    continue;
12516
	    continue;
12517
12517
12518
	  for (ch = 0; ch < 256; ch ++)
12518
	  for (ch = 0; ch < 256; ch ++)
(-)a/htmldoc/util.cxx (-1 / +1 lines)
Lines 484-490 Link Here
484
    PageWidth  = 595;
484
    PageWidth  = 595;
485
    PageLength = 792;
485
    PageLength = 792;
486
  }
486
  }
487
  else if (sscanf(size, "%fx%f%s", &width, &length, units) >= 2)
487
  else if (sscanf(size, "%fx%f%254s", &width, &length, units) >= 2)
488
  {
488
  {
489
   /*
489
   /*
490
    * Custom size...
490
    * Custom size...

Return to bug 278186