Module: wine
Branch: master
Commit: c4571e827b351832c51d0b45d4f10bffc28e5c3f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=c4571e827b351832c51d0b45d…
Author: Marcus Meissner <meissner(a)suse.de>
Date: Tue Mar 15 02:13:54 2011 +0100
shell32: Arrays are never NULL (Coverity).
---
dlls/shell32/control.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/control.c b/dlls/shell32/control.c
index 3be0494..ffe96ff 100644
--- a/dlls/shell32/control.c
+++ b/dlls/shell32/control.c
@@ -129,13 +129,13 @@ CPlApplet* Control_LoadApplet(HWND hWnd, LPCWSTR cmd, CPanel* panel)
but proper data in CPL_NEWINQUIRE. if we get an empty string or a null
icon, see what we can get from CPL_NEWINQUIRE */
- if ((applet->info[i].szName == 0) || (lstrlenW(applet->info[i].szName) == 0))
+ if (lstrlenW(applet->info[i].szName) == 0)
info.idName = CPL_DYNAMIC_RES;
/* zero-length szInfo may not be a buggy applet, but it doesn't hurt for us
to check anyway */
- if ((applet->info[i].szInfo == 0) || (lstrlenW(applet->info[i].szInfo) == 0))
+ if (lstrlenW(applet->info[i].szInfo) == 0)
info.idInfo = CPL_DYNAMIC_RES;
if (applet->info[i].hIcon == NULL)
Module: wine
Branch: master
Commit: 77f5a07c1bd351524fe294b051aee7f37a7f77ba
URL: http://source.winehq.org/git/wine.git/?a=commit;h=77f5a07c1bd351524fe294b05…
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Thu Mar 10 16:17:20 2011 -0600
gdiplus: Remove gdi32 fallback for bitmaps from GdipFillRegion.
We can always do a fill directly to the image bits when gdi32 can do it.
---
dlls/gdiplus/graphics.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 29dea0a..4d059f8 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -3919,9 +3919,6 @@ GpStatus WINGDIPAPI GdipFillRegion(GpGraphics* graphics, GpBrush* brush,
if (stat == NotImplemented)
stat = SOFTWARE_GdipFillRegion(graphics, brush, region);
- if (stat == NotImplemented && graphics->image)
- stat = GDI32_GdipFillRegion(graphics, brush, region);
-
if (stat == NotImplemented)
{
FIXME("not implemented for brushtype %i\n", brush->bt);
Module: wine
Branch: master
Commit: 5015f388d1cd1db86609e2414b9ea660383f8dbe
URL: http://source.winehq.org/git/wine.git/?a=commit;h=5015f388d1cd1db86609e2414…
Author: Ken Thomases <ken(a)codeweavers.com>
Date: Sun Mar 13 18:58:48 2011 -0500
secur32: Add alternative schannel implementation for Mac OS X.
It uses the native Secure Transport API rather than GnuTLS.
---
dlls/secur32/Makefile.in | 2 +
dlls/secur32/schannel.c | 6 +-
dlls/secur32/schannel_gnutls.c | 4 +-
dlls/secur32/schannel_macosx.c | 791 ++++++++++++++++++++++++++++++++++++++++
4 files changed, 798 insertions(+), 5 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=5015f388d1cd1db86609e…