From c1aef636df6fe5534e37fb28adb77c1688bff898 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Fri, 29 Jul 2011 11:07:37 -0500 Subject: [PATCH] windowscodecs: Fix typo. --- dlls/windowscodecs/icoformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windowscodecs/icoformat.c b/dlls/windowscodecs/icoformat.c index b9e7c6187ad..48a5c95b2ef 100644 --- a/dlls/windowscodecs/icoformat.c +++ b/dlls/windowscodecs/icoformat.c @@ -284,7 +284,7 @@ static HRESULT ReadIcoDib(IStream *stream, IcoFrameDecode *result) } if (SUCCEEDED(hr)) - hr = IWICBitmapFrameDecode_GetResolution(source, &result->dpiX, &result->dpiY); + hr = IWICBitmapFrameDecode_GetResolution(framedecode, &result->dpiX, &result->dpiY); IWICBitmapFrameDecode_Release(framedecode); } -- 2.11.4.GIT