[Errno 9] Bad file descriptor

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
realbug
Level 2
Level 2
Posts: 15
Joined: Sun May 22, 2022 3:27 am

[Errno 9] Bad file descriptor

Post by realbug »

https://github.com/KurtBestor/Hitomi-Do ... al-Preview
This program is the 2023-10-16 version, which has been in trouble due to continuous updates.
First, in version "stable 8.0.2", the program was originally run. However, this time, the developer upgraded the program from "qt5" to "qt6" and there was a problem The developer explained that win does not seem to support qt6 properly, so I ran it on the development version "8.18", but got a completely different error.
The results are the same when running with root privileges.
The execution environment is Ubuntu 22.04 version.
The run option on win must be window 10 You cannot run the program below that.
What's clear is that it works fine on windows.
If you need the 16th version, I will send it to you. The files on the links above may keep changing.
스크린샷 2023-10-19 214717.png
스크린샷 2023-10-19 214447.png
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: [Errno 9] Bad file descriptor

Post by jkfloris »

When I copy "C:\windows\system32\Windows.UI.dll" from a Windows 11 installation next to "hitomi_downloader_GUI.exe" and start the program with:

Code: Select all

WINEDLLOVERRIDES="windows.ui=n" wine hitomi_downloader_GUI.exe
I get a screen:
Schermafdruk van 2023-10-19 18-28-34.png
realbug
Level 2
Level 2
Posts: 15
Joined: Sun May 22, 2022 3:27 am

Re: [Errno 9] Bad file descriptor

Post by realbug »

-mistake-
realbug
Level 2
Level 2
Posts: 15
Joined: Sun May 22, 2022 3:27 am

Re: [Errno 9] Bad file descriptor

Post by realbug »

jkfloris wrote: Thu Oct 19, 2023 11:34 am When I copy "C:\windows\system32\Windows.UI.dll" from a Windows 11 installation next to "hitomi_downloader_GUI.exe" and start the program with:

Code: Select all

WINEDLLOVERRIDES="windows.ui=n" wine hitomi_downloader_GUI.exe
I get a screen:
Schermafdruk van 2023-10-19 18-28-34.png
Oh, I actually succeeded in getting the screen. Why is this error occurring? And why is it still not working in the development version?
And unfortunately, when you click the program's options-network-embedded web browser


'qtwebengineProcess.exe' is a serious problem... The program is terminated with errors such as etc.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: [Errno 9] Bad file descriptor

Post by jkfloris »

Why is this error occurring? And why is it still not working in the development version?
Wine isn't perfect. Not all components of Windows.UI.dll are built into Wine yet. That's why you see in the output:

Code: Select all

0124:fixme:ui:factory_QueryInterface {94ea2b94-e9cc-49e0-c0ff-ee64ca8f5b90} not implemented, returning E_NOINTERFACE.
0124:fixme:ui:uisettings3_GetColorValue type 5 not implemented.
Unfortunately, I don't know how to make "QtWebEngineProcess.exe" work.

You can file a bug so that the Wine developers can take a look at it.
realbug
Level 2
Level 2
Posts: 15
Joined: Sun May 22, 2022 3:27 am

Re: [Errno 9] Bad file descriptor

Post by realbug »

jkfloris wrote: Thu Oct 19, 2023 4:44 pm
Why is this error occurring? And why is it still not working in the development version?
Wine isn't perfect. Not all components of Windows.UI.dll are built into Wine yet. That's why you see in the output:

Code: Select all

0124:fixme:ui:factory_QueryInterface {94ea2b94-e9cc-49e0-c0ff-ee64ca8f5b90} not implemented, returning E_NOINTERFACE.
0124:fixme:ui:uisettings3_GetColorValue type 5 not implemented.
Unfortunately, I don't know how to make "QtWebEngineProcess.exe" work.

You can file a bug so that the Wine developers can take a look at it.
https://bugs.winehq.org/show_bug.cgi?id=55813

Finally, I made a bug report.
Locked