Module: wine Branch: master Commit: c1aef636df6fe5534e37fb28adb77c1688bff898 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c1aef636df6fe5534e37fb28ad...
Author: Vincent Povirk vincent@codeweavers.com Date: Fri Jul 29 11:07:37 2011 -0500
windowscodecs: Fix typo.
---
dlls/windowscodecs/icoformat.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/windowscodecs/icoformat.c b/dlls/windowscodecs/icoformat.c index b9e7c61..48a5c95 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); }