https://bugs.winehq.org/show_bug.cgi?id=46430
Bug ID: 46430
Summary: Doom3 (CD version) fails to install
Product: Wine
Version: 4.0-rc4
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Installation of Doom3 fails in wine-4.0-rc4 and earlier. Installer asks for
CD2, but even if the CD is in the drive, installer complains about missing
files and fails.
This is a long time regression (used to work since wine-1.7.28-130-g5cb10c96b2)
--
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=5402
Michael Stefaniuc <mstefani(a)winehq.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|3.0.x |---
--- Comment #47 from Michael Stefaniuc <mstefani(a)winehq.org> ---
Removing the 3.0.x milestone from bug fixes included in 3.0.5.
--
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=45832
Bug ID: 45832
Summary: Windower (Final Fantasy XI tool) Security Token
Exception
Product: Wine
Version: 3.15
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: conmanx360(a)gmail.com
Distribution: ---
Created attachment 62292
--> https://bugs.winehq.org/attachment.cgi?id=62292
Terminal output of Windower
Windower crashes before starting with a security token error. Don't know enough
about Mono to fix it, but any explanation on what's wrong would be helpful. Can
do different wine debug traces if necessary.
--
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=38402
Bug ID: 38402
Summary: glDebugMessageCallback is broken
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: chris.kcat(a)gmail.com
Distribution: ---
According to the KHR_debug extension spec, the function glDebugMessageCallback
takes a function pointer callback with the type:
typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,
GLenum type,
GLuint id,
GLenum severity,
GLsizei length,
const GLchar* message,
const void* userParam);
https://www.opengl.org/registry/specs/KHR/debug.txt
In particular, it notes that the function callback uses the same calling
convention as the other GL functions. The problem is that on Windows, GL uses
the stdcall calling convention, while on Linux it uses cdecl. Wine's
glDebugMessageCallback thunk passes the callback through as-is, so the system's
libGL tries to call an stdcall function as though it was cdecl, causing it to
crash upon returning.
Another problem is that the spec says:
"When DEBUG_OUTPUT_SYNCHRONOUS is disabled, the driver is optionally allowed to
concurrently call the debug callback routine from potentially multiple threads,
including threads that the context that generated the message is not currently
bound to."
meaning the callback can be called on threads other than the one OpenGL is
being used on. This is a problem because it may be called on one or more
internal driver threads that were not created using the Windows API, and if the
callback function tries to do anything that relies on Windows-related thread
information, it won't be there.
--
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=46210
Bug ID: 46210
Summary: explorer /desktop leaks atoms from DDE interface
Product: Wine
Version: 3.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: explorerframe
Assignee: wine-bugs(a)winehq.org
Reporter: ralf.habacker(a)freenet.de
Distribution: ---
explorer /desktop, started by wine as background process, initiate a DDE
interface (see
https://github.com/wine-mirror/wine/blob/master/programs/explorer/desktop.c…
and https://github.com/wine-mirror/wine/blob/master/dlls/shell32/dde.c#L483 for
details), but the DDE interface is not been free'd after main loop exit
(https://github.com/wine-mirror/wine/blob/master/programs/explorer/desktop.c…)
resulting in leaked atoms.
On the first run the following DDE related atoms are created:
c018: ref=2 pinned=N hash=14 "Folders"
c019: ref=1 pinned=N hash=18 "Folders(0x 23)"
c01b: ref=2 pinned=N hash=17 "Progman"
c01c: ref=1 pinned=N hash=17 "Progman(0x 23)"
c01d: ref=2 pinned=N hash=29 "Shell"
c01e: ref=1 pinned=N hash=23 "Shell(0x 23)"
on the next start the following atoms are added and so one
c01f: ref=1 pinned=N hash=21 "Folders(0x 44)"
c027: ref=1 pinned=N hash=22 "Progman(0x 44)"
c028: ref=1 pinned=N hash=26 "Shell(0x 44)"
Because the DDE interface use atoms unique for each session, each run leaks
three atoms
--
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=46040
Bug ID: 46040
Summary: every time i launch any windows .exe it give me some
random error ive never seen before
Product: Wine
Version: 3.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: anubis2497(a)gmail.com
Distribution: ---
Created attachment 62618
--> https://bugs.winehq.org/attachment.cgi?id=62618
backtrace
random bug
--
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=45913
Bug ID: 45913
Summary: tchar.h: using the macro _sntprintf leads to an
undefined reference to snwprintf; macro should resolve
to _snwprintf
Product: Wine
Version: unspecified
Hardware: arm
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: contact(a)ivanchev.net
Distribution: ---
According to MSDN (https://msdn.microsoft.com/en-us/library/2ts7cx93.aspx) the
following macro definition in tchar.h:
#define _sntprintf WINE_tchar_routine(snprintf, snprintf, snwprintf)
is missing an underscore at the beginning snwprintf
#define _sntprintf WINE_tchar_routine(snprintf, snprintf, _snwprintf).
--
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=41419
Bug ID: 41419
Summary: Visio 2013 crashes with unimplemented function
msvcp100.dll.?_GetCombinableSize@details@Concurrency@@
YAIXZ
Product: Wine
Version: 1.9.20
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: msvcp
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
wine: Call from 0x7b43b53c to unimplemented function
msvcp100.dll.?_GetCombinableSize@details@Concurrency@@YAIXZ, aborting
--
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.