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

Collapse All | Expand All

(-)file_not_specified_in_diff (-2 / +2 lines)
Line  Link Here
0
-- a/splash/SplashBitmap.cc
0
++ b/splash/SplashBitmap.cc
Lines 62-68 SplashBitmap::SplashBitmap(int widthA, int heightA, int rowPad, Link Here
62
  }
62
  }
63
  rowSize += rowPad - 1;
63
  rowSize += rowPad - 1;
64
  rowSize -= rowSize % rowPad;
64
  rowSize -= rowSize % rowPad;
65
  data = (SplashColorPtr)gmalloc(rowSize * height);
65
  data = (SplashColorPtr)gmallocn(rowSize, height);
66
  if (!topDown) {
66
  if (!topDown) {
67
    data += (height - 1) * rowSize;
67
    data += (height - 1) * rowSize;
68
    rowSize = -rowSize;
68
    rowSize = -rowSize;

Return to bug 263028