https://bugs.winehq.org/show_bug.cgi?id=49683
Bug ID: 49683
Summary: Kingdom Come Deliverance crashes on missing:
8b082b18-a6e1-4298-930a-0fcae616d1aa
Product: Wine
Version: 5.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: piotr(a)majkrzak.dev
Distribution: ---
After upgrading wine to latest version KCD starts crashing with following error
in the console:
```
****DICE****00b8:err:ole:CoGetClassObject class
{8b082b18-a6e1-4298-930a-0fcae616d1aa} not registered
00b8:err:ole:CoGetClassObject class {8b082b18-a6e1-4298-930a-0fcae616d1aa} not
registered
00b8:err:ole:create_server class {8b082b18-a6e1-4298-930a-0fcae616d1aa} not
registered
00b8:err:ole:CoGetClassObject no class object
{8b082b18-a6e1-4298-930a-0fcae616d1aa} could be created for context 0x17
```
Looks like https://bugs.winehq.org/show_bug.cgi?id=43168 visits again.
--
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=43329
Bug ID: 43329
Summary: comdlg32/filedlg: incorrect path selection
Product: Wine
Version: 2.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: me(a)mixaill.tk
Distribution: ---
There is problem with FileDlg path calculation if user tries to select
directory.
If user:
- selects some folder (for example, C:\Test) and *enters in it*
- clicks on OK
Then the "File does not exist" error message appears.
in itemdlg.c::on_default_action() function:
canon_filename variable equal to "C:\Test\Test" (current directory path + value
of automatically filled "file name" textbox in dialog).
You can use "Wargaming.net Game Center" to reproduce this error. ("import game"
feature)
https://appdb.winehq.org/objectManager.php?sClass=version&iId=35458
--
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=48587
Bug ID: 48587
Summary: httpapi tests are broken on Windows 8
Product: Wine
Version: 5.1
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: httpapi
Assignee: wine-bugs(a)winehq.org
Reporter: sven.wine(a)gmail.com
Regression SHA1: 142585a1221a789b181e0d4c05d2b4162b9df23f
Distribution: ---
See
https://test.winehq.org/data/tests/httpapi:httpapi.html
or
https://test.winehq.org/data/287dabd9b6887e94cabfa2a5f9bfe822522095e5/win8_…
for a specific example.
Since they only fail on 64 bit, this might be due to the 64 bit tests being run
right after the 32 bit tests on those machines, but I'm not sure.
--
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=27229
Summary: printf() newline missing with multibyte strings
Product: Wine
Version: 1.3.20
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: itakingiteasy(a)gmail.com
Created an attachment (id=34797)
--> (http://bugs.winehq.org/attachment.cgi?id=34797)
Code example making case for missing newline in wine printf when multibyte
string is printed
Wine's printf is missing newline when "Multibyte string пукпукпук\n" is
supplied to printf(). Attached code is a test-case reproducing the bug. When
same binary exectued on windows, or same code compiled for- and executed on-
linux - all goes fine. Only when executed under wine newline is missing. It
results in that printed string shares same line with next PS1 prompt here is
screenshot illusrating the problem (FIG1):
(FIG1)
ftp://neverb.net/images/special/screenshot/wine_issue/linux_wine_cmd_exe.png
Note that extra newline in wine cmd.exe is missing.
Here is refference windows screenshot (FIG2) showing where this extra newline
should be:
(FIG2) ftp://neverb.net/images/special/screenshot/wine_issue/native_windows.png
Known possible workarounds for this problem:
* add '\r' before '\n'
* use only ascii (non-multibyte) characters in printing string
* use WCHAR instead of wchar_t
* use wprintf(L"%ls\n"~ instead of printf("%s"~
But all this workarounds are just a sideways. I hope that there is some real
solution.
Thanks.
--
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=50378
Bug ID: 50378
Summary: dlls/amstream/tests/amstream.o error: unknown field
‘dwBitMasks’ specified in initializer
Product: Wine
Version: 6.0-rc2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: version2013(a)protonmail.com
Distribution: ---
Created attachment 68983
--> https://bugs.winehq.org/attachment.cgi?id=68983
log.txt
in distro:
# uname --kernel-release
3.0.66
# gcc --version
4.3.4
# ldd --version
2.10.1
Compiling wine-6.0-rc2 fails with multiple items:
error: unknown field ‘dwBitMasks’ specified in initializer
warning: large integer implicitly truncated to unsigned type
error: unknown field ‘dwRGBBitCount’ specified in initializer
warning: integer constant is too large for ‘long’ type
config line:
configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
--x-includes=/usr/X11R7/include --x-libraries=/usr/X11R7/lib --with-x
--libdir=/usr/lib32 CFLAGS="-O2 -march=i686 -mtune=i686"
I imagine other bug [1] is still present, but this new bug stops compilation
first.
[1] https://bugs.winehq.org/show_bug.cgi?id=47907
--
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=32061
Bug #: 32061
Summary: Guild Wars: Launcher hangs sometimes
Product: Wine
Version: 1.5.15
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
If Im starting the launcher it will hang sometimes. For example this happens on
the command "'/wine/drive_c/Program Files (x86)/GUILD WARS/Gw.exe'" and even
with the -image parameter "'/wine/drive_c/Program Files (x86)/GUILD
WARS/Gw.exe' -image".
If the problem happens the launcher will use 200% of cpu time (6-core
processor) and I'm getting the error "err:ntdll:RtlpWaitForCriticalSection
section 0xa33108 "?" wait timed out in thread 002a, blocked by 003b, retrying
(60 sec)". After 60 seconds I'm getting the same error again (this seems to be
an infinite loop).
--
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=31942
Bug #: 31942
Summary: Office Professional 2003 Installer Crashes Almost
Immediately
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: abc.mikey(a)googlemail.com
Classification: Unclassified
Created attachment 42073
--> http://bugs.winehq.org/attachment.cgi?id=42073
Office Professional 2003 Installer
When running the installer for Office Professional 2003 it briefly shows a
window which looks like it might have a progress bar in it and then crashes.
This may be a more general problem with a certain type of installer because
when I tried working around the problem by using a custom install (which may
not have been of any use) see:
https://office.microsoft.com/en-us/office-2003-resource-kit/custom-installa…
I tried installing the "Office 2003 Editions Resource Kit" (ork.exe) which
appears to produce a very similar error and may be useful for testing. The
installation window that appears briefly also looks very similar to the Office
2003 install window.
Ork.exe can be found on this page:
http://www.microsoft.com/office/orkarchive/2003ddl.htm
I am running:
Lubuntu 12.04.1 LTS.
3.2.0-31-generic
lxde 0.5.0-4ubuntu3
openbox 3.5.0-2ubuntu2
wine-1.5.14
--
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=50406
Bug ID: 50406
Summary: App Gobe Productive crashes when it come to manage
text entity, no matter the section: doc, spredsheet,
graphics, presentation or image manipulation
Product: Wine
Version: 4.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: saftoiu(a)gmail.com
Distribution: ---
Created attachment 69027
--> https://bugs.winehq.org/attachment.cgi?id=69027
Details submitted by wine when it crashes
Wine it's crashing when I use Gobe Productive (see the attachment for details
returned by wine), please help with some clue for adjustments, something I've
fixed by emulating a desktop with fixed definition (graphical and image
manipulation), now, I think, the problem that new trials regard the text
management, may be with font management.
--
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=50403
Bug ID: 50403
Summary: Little Nightmares II Launches To Error
Product: Wine
Version: 5.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: matthewcboyd(a)tutanota.com
Distribution: ---
Created attachment 69025
--> https://bugs.winehq.org/attachment.cgi?id=69025
Debugging Log
When trying to launch the demo to Little Nightmares II through Wine I get the
error "the application does not support your operating system".
System:
AMD Ryzen 5 2600X | 16GB DDR4-3000 CL15 | Gigabyte R9 270 2GB | Mesa 20.2.3 |
Manjaro 20.2 | Mate 1.24.1 | Kernel 5.9.11-3-MANJARO
--
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=9154
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
URL|http://archives.scovetta.co |https://web.archive.org/web
|m/pub/mirrors/ftp.3drealms. |/20201225231052/https://arc
|com/share/bossw13.exe |hives.scovetta.com/pub/mirr
| |ors/ftp.3drealms.com/share/
| |bossw13.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.