Wine CVS still broken

Francois Gouget fgouget at free.fr
Wed Dec 8 04:38:17 CST 2004


On Tue, 7 Dec 2004, Florian Goth wrote:

> I deleted my wine - folder and did a full cvs checkout today(23:00 CET )
> But there's still a problem in winejack:

Use one of the three patches that have been posted on wine-patches.
Just to show I'm really impartial I attached mine<g>.


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
     Indifference will certainly be the downfall of mankind, but who cares?
-------------- next part --------------
Index: dlls/winmm/winejack/audio.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/winejack/audio.c,v
retrieving revision 1.18
diff -u -r1.18 audio.c
--- dlls/winmm/winejack/audio.c	7 Dec 2004 14:31:53 -0000	1.18
+++ dlls/winmm/winejack/audio.c	8 Dec 2004 00:33:10 -0000
@@ -932,7 +932,7 @@
 
       WOutDev[i].caps.wMid = 0x00FF; 	/* Manufac ID */
       WOutDev[i].caps.wPid = 0x0001; 	/* Product ID */
-      strcpyW(WOutDev[i].caps.szPname, ini_out);
+      lstrcpyW(WOutDev[i].caps.szPname, ini_out);
 
       snprintf(WOutDev[i].interface_name, sizeof(WOutDev[i].interface_name), "winejack: %d", i);
 
@@ -966,7 +966,7 @@
 
 	WInDev[i].caps.wMid = 0x00FF;
 	WInDev[i].caps.wPid = 0x0001;
-        strcpyW(WInDev[i].caps.szPname, ini_in);
+        lstrcpyW(WInDev[i].caps.szPname, ini_in);
         snprintf(WInDev[i].interface_name, sizeof(WInDev[i].interface_name), "winejack: %d", i);
 
 	WInDev[i].caps.vDriverVersion = 0x0100;


More information about the wine-devel mailing list