Hi, i get this crash in an application (ftp://ftp.avault.com/demos/puzzleblastsetup.exe) :

wine_dbg_vprintf: debugstr buffer overflow (contents: 'fixme:d3d_surface:IWineGDISurfaceImpl_Blt        Unsupported flags: 00000010  Unsupported flags: 00000010     Unsupported flags: 00000010     Unsupported flags: 00000010     etcetera

This simple patch fixes it.

Changelog:add an "\n" to a fixme to fix an overflow


All New Yahoo! Mail – Tired of [EMAIL PROTECTED]@! come-ons? Let our SpamGuard protect you.
diff --git a/dlls/wined3d/surface_gdi.c b/dlls/wined3d/surface_gdi.c
index ce39090..35c5eed 100644
--- a/dlls/wined3d/surface_gdi.c
+++ b/dlls/wined3d/surface_gdi.c
@@ -1042,7 +1042,7 @@ #undef COPY_COLORKEY_FX
 error:
     if (Flags && FIXME_ON(d3d_surface))
     {
-        FIXME("\tUnsupported flags: %08lx", Flags);
+        FIXME("\tUnsupported flags: %08lx\n", Flags);
     }
 
 release:


Reply via email to