Andrew Talbot : user32: Suppress sign-extension through integer promotion.

Alexandre Julliard julliard at winehq.org
Wed Nov 9 13:29:41 CST 2011


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Tue Nov  8 22:23:49 2011 +0000

user32: Suppress sign-extension through integer promotion.

---

 dlls/user32/wsprintf.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/wsprintf.c b/dlls/user32/wsprintf.c
index 5e618d6..17d39a4 100644
--- a/dlls/user32/wsprintf.c
+++ b/dlls/user32/wsprintf.c
@@ -475,7 +475,7 @@ static INT wvsnprintfW( LPWSTR buffer, UINT maxlen, LPCWSTR spec, __ms_va_list a
         case WPR_STRING:
             {
                 LPCSTR ptr = argData.lpcstr_view;
-                for (i = 0; i < len; i++) *p++ = (WCHAR)*ptr++;
+                for (i = 0; i < len; i++) *p++ = (BYTE)*ptr++;
             }
             break;
         case WPR_WSTRING:
@@ -501,7 +501,7 @@ static INT wvsnprintfW( LPWSTR buffer, UINT maxlen, LPCWSTR spec, __ms_va_list a
             /* fall through */
         case WPR_UNSIGNED:
             for (i = len; i < format.precision; i++, maxlen--) *p++ = '0';
-            for (i = sign; i < len; i++) *p++ = (WCHAR)number[i];
+            for (i = sign; i < len; i++) *p++ = (BYTE)number[i];
             break;
         case WPR_UNKNOWN:
             continue;




More information about the wine-cvs mailing list