https://bugs.winehq.org/show_bug.cgi?id=39233
Bug ID: 39233
Summary: setupapi:misc crashes if privileges not high enough
Product: Wine
Version: unspecified
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: setupapi
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The crash is followed by messages reporting errors:
misc.c:233: Test failed: Expected TRUE, got 0
misc.c:234: Test failed: Expected ERROR_SUCCESS, got 5
misc.c:240: Test failed: Expected TRUE, got 0
misc.c:241: Test failed: Expected ERROR_SUCCESS, got 2
misc.c:248: Test failed: Expected ERROR_FILE_EXISTS, got 5
misc.c:254: Test failed: Expected TRUE, got 0
misc.c:255: Test failed: Expected ERROR_SUCCESS, got 5
misc.c:257: Test failed: Expected destination inf to exist
misc.c:258: Test failed: Expected %windir%\inf\OEMx.inf, got þ"
misc.c:272: Test failed: Expected ERROR_INSUFFICIENT_BUFFER, got 5
misc.c:275: Test failed: Expected dest inf to exist
misc.c:277: Test failed: Expected size to be lstrlen(dest_save) + 1
misc.c:282: Test failed: Expected TRUE, got 0
misc.c:283: Test failed: Expected ERROR_SUCCESS, got 5
misc.c:284: Test failed: Expected sizes to match, got (3, 0)
misc.c:285: Test failed: Expected destination inf to exist
misc.c:286: Test failed: Expected %windir%\inf\OEMx.inf, got aaa
misc.c:288: Test failed: Expected size to be lstrlen(dest_save) + 1
misc.c:116: this is the last test seen before the exception
misc: unhandled exception c0000005 at 78409A5F
test failed: crash
This crash happens specifically on the following WineTest box:
fg-win2000-rusr: Windows 2000 with a Restricted user account
Interestingly it neither crashes nor fails in non-Restricted/Limited user
accounts on the following boxes:
fg-win2000-susr: Windows 2000 with a Standard (Power) user account.
fg-winxp-lusr: Windows XP with a Limited user account.
fg-win7u64-1spie9usr: Windows 7 with a regular user account.
See:
https://test.winehq.org/data/tests/setupapi:misc.html
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=39234
Bug ID: 39234
Summary: setupapi:query fails if privileges not high enough
Product: Wine
Version: unspecified
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: setupapi
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The following failures only happen if the test is run in a restricted user
account.
query.c:283: Test failed: Expected SetupGetInfInformation to succeed: 2
query.c:284: Test failed: Expected returned filename to be equal
query.c:291: Test failed: Expected SetupGetInfInformation to succeed
query.c:292: Test failed: Expected returned filename to be equal
This can be seen on the following WineTest box:
fg-win2000-rusr: Windows 2000 with a Restricted user account
Note however that it succeeds in non-Restricted user accounts on the following
boxes for instance:
fg-win2000-susr: Windows 2000 with a Standard (Power) user account.
fg-winxp-lusr: Windows XP with a Limited user account.
fg-win7u64-1spie9usr: Windows 7 with a regular user account.
The failing tests were introduced by this commit:
commit ac6c9410587c7b0c3ec5614ba1c8289dd525a407
Author: James Hawkins <truiken(a)gmail.com>
Date: Tue Jan 31 12:22:48 2006 +0100
setupapi: Add tests for SetupGetInfInformation.
See:
https://test.winehq.org/data/tests/setupapi:query.html
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=51194
Bug ID: 51194
Summary: Unity games on Mac are not correctly foregrounded on
launch
Product: Wine
Version: 6.9
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winemac.drv
Assignee: wine-bugs(a)winehq.org
Reporter: bshanks(a)codeweavers.com
When Unity games launch, they roughly do this:
(create normal window)
SetWindowPos(hWnd, HWND_NOTOPMOST, 200, 200, 640, 480, SWP_NOACTIVATE |
SWP_SHOWWINDOW | SWP_NOCOPYBITS);
Sleep(100);
SetFocus(hWnd);
ShowWindow(hWnd, nCmdShow);
UpdateWindow(hWnd);
(they actually call SetWindowPos again with the same parameters instead of a
Sleep call, but the only effect that matters is that the call takes a small
amount of time).
On Mac, this ends up with the window focused and foreground, but
GetForegroundWindow() returns the desktop's HWND, not the correct hWnd. This
results in the window not receiving raw input messages, and a typical FPS is
not controllable.
But in the example, if I call SetForegroundWindow() instead of SetFocus(), the
foreground window is correctly set.
On Linux/X11, it works correctly for both cases.
The difference appears to be that SetForegroundWindow() directly sets the
foreground window (set_foreground_window() in dlls/user32/focus.c), but
SetFocus() does not. It sets focus through the driver
(X11DRV/macdrv_SetFocus()), and then once the window system reports the window
is focused (WM_TAKE_FOCUS / windowDidBecomeKey:), SetForegroundWindow() is
called.
However, the Mac driver has logic added that prevents this from working the
same way as on X11.
The first is 4e0e9ca84a89d1ac2b548ee4a6224b764af2d23d.
makeKeyWindow: is the OS call to focus the window, and windowDidBecomeKey: is
eventually called by it. Since causing_becomeKeyWindow is == self, the
important part of windowDidBecomeKey: (calling windowGotFocus:) is skipped.
But even if I comment out that early return in windowDidBecomeKey:, so that
windowGotFocus: is called and a WINDOW_GOT_FOCUS event is posted, makeFocused:
then discards all GOT_FOCUS/LOST_FOCUS events. This is from commit
4f9de6bcdf1722a258413ce99c26f2ee5b36dbf2, and apparently fixed the game Syberia
II.
Both of these commits need to be relaxed/reverted to some degree.
I'll also upload a sample Unity app for testing, and a simple Win32 app to
reproduce.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=49956
Bug ID: 49956
Summary: Qt Creator installer does not create it's maintenance
program
Product: Wine
Version: 5.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cedric.dewijs(a)eclipso.eu
Distribution: ---
Created attachment 68347
--> https://bugs.winehq.org/attachment.cgi?id=68347
Screenshot of missing MaintenanceTool.exe message
Summary
Qt Creator installer does not create it's maintenance program
Download location
https://www.qt.io/download-thank-you?os=windows&hsLang=en
$ sha256sum qt-unified-windows-x86-3.2.3-online.exe
f4ac94370647375e557569f15d443ff8032687cca505db623a08422f3df02a5c
qt-unified-windows-x86-3.2.3-online.exe
Steps to reproduce
1) start the installer
$ wine qt-unified-windows-x86-3.2.3-online.exe with the following settings:
welcome -> next
qt account -> make or input a qt account, next
qt open source -> [X] i have read and approve the obligation of using open
source qt, next
setup -> next
contribute -> [X] help us -> next
Installation folder -> C:\Qt
Select components
Qt -> Qt 5.15.1 -> MinGw 8.1.0 32 bit
Qt -> Developer and designer tools -> Qt Creator 4.13.2 CDB Debugger Support
Support (default)
Qt -> Developer and designer tools -> Debugging tools for windows (default)
Qt -> Developer and designer tools -> CMake 3.17.1 64-bit (default)
Qt -> Developer and designer tools -> Ninja 1.10.0 (default)
Qt -> Developer and designer tools -> MinGW 8.1.0 32 bit (must match the Qt
version above) -> next
License Agreement [X] I have read and agree to the terms -> next
start menu shortcuts -> next
Ready to install -> Install -> next
Completing the wizard [X] Launch Qt Creator
Now Qt creator starts and gives the message "Plugin initialization failed: The
maintenance tool at "C:\Qt/MaintenanceTool.exe" is not an executable. Check
your installation." see the screenshot.
MaintenanceTool.exe is indeed missing:
$ ls ~/.wine/drive_c/Qt/
5.15.1 Examples Licenses network.xml
components.xml InstallationLog.txt MaintenanceTool.dat.new Tools
dist installer.dat MaintenanceTool.exe.new vcredist
Docs installerResources MaintenanceTool.ini
Versions:
$ wine --version
wine-5.18 (Staging)
$ pacman -Q wine
wine-staging 5.18-1
uname -a
Linux cedric-p4 5.8.13-arch1-1 #1 SMP PREEMPT Thu, 01 Oct 2020 20:40:35 +0000
x86_64 GNU/Linux
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=8671
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Safari (and Bonjour) fails |Bonjour for Windows 1.0
|to install |fails to install
URL|http://www.apple.com/safari |https://web.archive.org/web
|/download/ |/20050924144412/http://a140
| |8.g.akamai.net/7/1408/9955/
| |20050505/akamai.info.apple.
| |com/Bonjour/061-1768.200505
| |05.BJWdw/BonjourSetup.exe
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14221
Summary: After Wineboot startup
Product: Wine
Version: 1.0.0
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deepblu(a)poczta.fm
Created an attachment (id=14508)
--> (http://bugs.winehq.org/attachment.cgi?id=14508)
wine_dump
After Wineboot start i have message like in attachment;
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14827
Summary: Autocad 2005 : Multiline text edit crashes application
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max(a)veneto.com
If you try to edit a multiline text (MTEXT) or a dimension text on autocad
(tested on 2005), following happens :
1) The editor is (correctly) shown, but edited text is not visible on text area
2) If you use ESC to abort command, you retourns on autocad correctly
3) If you press OK button to accept changes, the whole autocad hangs.
Ciao
Max
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=40821
Bug ID: 40821
Summary: Java JRE 8 installer 'jre-8u60-windows-i586.exe' and
latter hang during installation
Product: Wine
Version: 1.9.12
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Since bug 38811 was fixed, i wanted to re-test:
* jre-8u45-windows-i586.exe ... installer runs
* jre-8u51-windows-i586.exe ... installer runs
* jre-8u55-windows-i586.exe ... installer runs
* jre-8u60-windows-i586.exe ... installer stalls
* jre-8u77-windows-i586.exe ... installer stalls
* jre-8u91-windows-i586.exe ... installer stalls
Last line in that case is:
fixme:jscript:JSGlobal_eval No active exec_ctx
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14422
Summary: AutoCAD 2005 fails to start
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r.snajdr(a)coramexport.cz
AutoCAD 2005 now installs but it wont start. It reports some problems about
gdiplus. I tryed to istall another one from ddl.com but it did not help
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.