Skip to content

Commit 95ba5c3

Browse files
committed
patch 8.1.0465: client-server test fails
Problem: Client-server test fails. Solution: Change logic in EnumWindows().
1 parent 1df2fa4 commit 95ba5c3

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/os_mswin.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2343,8 +2343,8 @@ enum_windows_toplevel(HWND hwnd, LPARAM lParam)
23432343
{
23442344
struct enum_windows_s *ew = (struct enum_windows_s *)lParam;
23452345

2346-
if ((ew->lpEnumFunc)(hwnd, ew->lParam) == FALSE)
2347-
return FALSE;
2346+
if ((ew->lpEnumFunc)(hwnd, ew->lParam))
2347+
return TRUE;
23482348
return EnumChildWindows(hwnd, enum_windows_child, lParam);
23492349
}
23502350

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,8 @@ static char *(features[]) =
792792

793793
static int included_patches[] =
794794
{ /* Add new patch number below this line */
795+
/**/
796+
465,
795797
/**/
796798
464,
797799
/**/

0 commit comments

Comments
 (0)