[PATCH 3/3] [WinMM]: protect MCI_SYSINFO against null buffers

Eric Pouech eric.pouech at orange.fr
Sat Oct 17 03:08:51 CDT 2009




A+
---

 dlls/winmm/mci.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/dlls/winmm/mci.c b/dlls/winmm/mci.c
index 32204a0..b133ffc 100644
--- a/dlls/winmm/mci.c
+++ b/dlls/winmm/mci.c
@@ -1834,7 +1834,8 @@ static	DWORD MCI_SysInfo(UINT uDevID, DWORD dwFlags, LPMCI_SYSINFO_PARMSW lpParm
     LPWINE_MCIDRIVER	wmd;
     HKEY		hKey;
 
-    if (lpParms == NULL)			return MCIERR_NULL_PARAMETER_BLOCK;
+    if (lpParms == NULL || lpParms->lpstrReturn == NULL)
+        return MCIERR_NULL_PARAMETER_BLOCK;
 
     TRACE("(%08x, %08X, %p[num=%d, wDevTyp=%u])\n",
 	  uDevID, dwFlags, lpParms, lpParms->dwNumber, lpParms->wDeviceType);






More information about the wine-patches mailing list