[PATCH] user.exe16: Fix handling of DDL_DRIVES flag in DlgDirList.

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Sun Jun 24 23:13:40 CDT 2018


From: Alex VillacĂ­s Lasso <a_villacis at palosanto.com>

Fixes: https://bugs.winehq.org/show_bug.cgi?id=18734

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 dlls/user.exe16/dialog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/user.exe16/dialog.c b/dlls/user.exe16/dialog.c
index e5bf7b9..385e859 100644
--- a/dlls/user.exe16/dialog.c
+++ b/dlls/user.exe16/dialog.c
@@ -636,7 +636,7 @@ INT16 WINAPI DlgDirList16( HWND16 hDlg, LPSTR spec, INT16 idLBox,
      * be set automatically (this is different in Win32, and
      * DIALOG_DlgDirList sends Win32 messages to the control,
      * so do it here) */
-    if (attrib & DDL_DRIVES) attrib |= DDL_EXCLUSIVE;
+    if (attrib == DDL_DRIVES) attrib |= DDL_EXCLUSIVE;
     return DlgDirListA( WIN_Handle32(hDlg), spec, idLBox, idStatic, attrib );
 }
 
-- 
1.9.1



More information about the wine-devel mailing list