# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1573496963 0 # Node ID 8a11bb8ec34725e46ad16fc0ce9dcdbdbca3e4cb # Parent 3f265cd5b0690d60bd811a48f6bb767420e08857 Win: Minor fix, using wrong union member. Use the unsigned long long value. It had been using the pointer member, which would be the same on x64 but not x86. diff -r 3f265cd5b069 -r 8a11bb8ec347 win/browser.c --- a/win/browser.c Sat Nov 09 07:43:04 2019 +0000 +++ b/win/browser.c Mon Nov 11 18:29:23 2019 +0000 @@ -1190,7 +1190,7 @@ /* Get the window handle and URL */ vWindow.vt = VT_UI8; pwb->lpVtbl->GetProperty(pwb, bstrProp, &vWindow); - hwnd = (HWND)vWindow.byref; + hwnd = (HWND)vWindow.ullVal; SysFreeString(bstrProp); pwb->lpVtbl->get_LocationURL(pwb, &locationURL); /* Send the event for signal handling */