diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 8639128a81903dd5ad96d7013e075a8595e3fab8..01a0a82be2379dc83cd3b5aa5f6ece0d9c2ed78e 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,3 +1,10 @@ +2009-06-19 Chris Marrin + + Fixed a build error, which only shows up in the i386 compile + + * platform/graphics/mac/GraphicsLayerCA.mm: + (WebCore::GraphicsLayerCA::animateTransform): + 2009-06-19 Simon Fraser Reviewed by Oliver Hunt. diff --git a/WebCore/platform/graphics/mac/GraphicsLayerCA.mm b/WebCore/platform/graphics/mac/GraphicsLayerCA.mm index b509b015866e53be7e7747e91d2618be6d8f5ab9..4ee214e050fb5793c86b3c6a87245e1cc065808a 100644 --- a/WebCore/platform/graphics/mac/GraphicsLayerCA.mm +++ b/WebCore/platform/graphics/mac/GraphicsLayerCA.mm @@ -1006,7 +1006,8 @@ bool GraphicsLayerCA::animateTransform(const TransformValueList& valueList, cons } } else { // Is a transition - id fromValue, toValue; + id fromValue = 0; + id toValue = 0; if (isMatrixAnimation) { TransformationMatrix fromt, tot;