Austin English : uxtheme: plf is already a pointer.

Alexandre Julliard julliard at winehq.org
Tue May 22 14:21:28 CDT 2012


Module: wine
Branch: master
Commit: d7ccfef25b5a128705dbfc11a717c2f4153f02c6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=d7ccfef25b5a128705dbfc11a717c2f4153f02c6

Author: Austin English <austinenglish at gmail.com>
Date:   Mon May 21 16:52:40 2012 -0700

uxtheme: plf is already a pointer.

---

 dlls/uxtheme/metric.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/uxtheme/metric.c b/dlls/uxtheme/metric.c
index c056f28..043f836 100644
--- a/dlls/uxtheme/metric.c
+++ b/dlls/uxtheme/metric.c
@@ -118,7 +118,7 @@ HRESULT WINAPI GetThemeSysFont(HTHEME hTheme, int iFontID, LOGFONTW *plf)
        }
     }
     if(iFontID == TMT_ICONTITLEFONT) {
-        if(!SystemParametersInfoW(SPI_GETICONTITLELOGFONT, sizeof(LOGFONTW), &plf, 0))
+        if(!SystemParametersInfoW(SPI_GETICONTITLELOGFONT, sizeof(LOGFONTW), plf, 0))
             return HRESULT_FROM_WIN32(GetLastError());
     }
     else {




More information about the wine-cvs mailing list