poppler/GfxState.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b526edc439a19970aa5efb47993ebddc80af0f05 Author: Albert Astals Cid <[email protected]> Date: Wed Jan 20 21:59:05 2010 +0000 Fix GfxRadialShading::GfxRadialShading Fixes crash in KDE bug 223359 diff --git a/poppler/GfxState.cc b/poppler/GfxState.cc index 0dc02b4..d53c0cb 100644 --- a/poppler/GfxState.cc +++ b/poppler/GfxState.cc @@ -16,7 +16,7 @@ // Copyright (C) 2005 Kristian Høgsberg <[email protected]> // Copyright (C) 2006, 2007 Jeff Muizelaar <[email protected]> // Copyright (C) 2006 Carlos Garcia Campos <[email protected]> -// Copyright (C) 2006-2009 Albert Astals Cid <[email protected]> +// Copyright (C) 2006-2010 Albert Astals Cid <[email protected]> // Copyright (C) 2009 Koji Otani <[email protected]> // Copyright (C) 2009 Thomas Freitag <[email protected]> // Copyright (C) 2009 Christian Persch <[email protected]> @@ -2893,7 +2893,7 @@ GfxRadialShading::GfxRadialShading(GfxRadialShading *shading): y1 = shading->y1; r1 = shading->r1; t0 = shading->t0; - y1 = shading->t1; + t1 = shading->t1; nFuncs = shading->nFuncs; for (i = 0; i < nFuncs; ++i) { funcs[i] = shading->funcs[i]->copy();
_______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
