user32: Cast-qual warnings fix (3 of 4)

Andrew Talbot Andrew.Talbot at talbotville.com
Sat Nov 18 08:22:13 CST 2006


Changelog:
    user32: Cast-qual warnings fix.

diff -urN a/dlls/user32/edit.c b/dlls/user32/edit.c
--- a/dlls/user32/edit.c	2006-11-16 14:02:17.000000000 +0000
+++ b/dlls/user32/edit.c	2006-11-18 13:08:11.000000000 +0000
@@ -5014,11 +5014,12 @@
  */
 static void EDIT_WM_SetText(EDITSTATE *es, LPCWSTR text, BOOL unicode)
 {
+    LPWSTR textW = NULL;
     if (!unicode && text)
     {
 	LPCSTR textA = (LPCSTR)text;
 	INT countW = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
-        LPWSTR textW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR));
+        textW = HeapAlloc(GetProcessHeap(), 0, countW * sizeof(WCHAR));
 	if (textW)
 	    MultiByteToWideChar(CP_ACP, 0, textA, -1, textW, countW);
 	text = textW;
@@ -5035,7 +5036,7 @@
 	TRACE("%s\n", debugstr_w(text));
 	EDIT_EM_ReplaceSel(es, FALSE, text, FALSE, FALSE);
 	if(!unicode)
-	    HeapFree(GetProcessHeap(), 0, (LPWSTR)text);
+	    HeapFree(GetProcessHeap(), 0, textW);
     } 
     else 
     {



More information about the wine-patches mailing list