http://bugs.winehq.org/show_bug.cgi?id=11426
Summary: Cryptographic exception in .NET Framework application
Product: Wine
Version: 0.9.54.
Platform: PC
URL: http://www.aisto.com/roeder/dotnet/Download.aspx?File=Re
flector
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: crypt32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=10555)
--> (http://bugs.winehq.org/attachment.cgi?id=10555)
Terminal output and backtraces.
After configuring Wine and installing the .NET Framework as per AppDb
instructions, I attempted to execute Reflector, a .NET class browser under
Wine. After a failed attempt to launch the .NET CLR optimization service, the
application throws a managed CLR exception, followed then by a native page
fault. To obtain Reflector, it is simply necessary to provide any random
information to download it.
--
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=9297
Summary: all screen resolutions but 600x480 crash PES4 demo
Product: Wine
Version: 0.9.43.
Platform: PC
URL: http://www.fileshack.com/file_download.x/5863
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
With PES4 demo, the screen resolution 600x480 works almost fine.
But all other screen resolutions make wine crashe
I attached the console output
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10082
Summary: City of Heroes chat window loses keystrokes, does not
snap back out
Product: Wine
Version: 0.9.47.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthew.b.gerber(a)gmail.com
In City of Heroes' chat window, the first character of each typed line is
always lost, and focus does not snap back away from the window after sending a
message.
1. If I enter the window by typing a slash, the slash itself is lost (whereas
it would normally be the first character to appear).
2. If I enter the window by hitting Enter, the first character *after* I hit
Enter is lost (whereas it would normally be the first character to appear).
3. After I send a message in the chat window, the focus remains in the chat
window rather than snapping back out to the game controls (which is the normal
behavior).
4. After I send a message in the chat window, the next character is also lost -
so to get back out after sending a message, you have to hit escape.
5. When I use the mouse to enter or exit the chat window, 1, 2 and 4 don't
happen; it focuses and defocuses properly. 3 still happens, however.
OS: Ubuntu 7.0.4
CPU: Intel Core 2 Duo
GPU: nVidia GeForce 6800 Ultra
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=11269
Summary: Keyboard commands do not work in Civilization I for
Windows (16-bt)
Product: Wine
Version: 0.9.53.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neptunia(a)mail.ru
Keyboard commands do not work in the game. The same orders given using menu
work properly.
--
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=11159
Summary: In Steam some text is not properly rendered
Product: Wine
Version: 0.9.53.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: atari(a)gabo.pl
In Steam on windows, in "My Games" column headers font ("Games", "Status",...)
is bold. In Wine, it is not bold, and somehow messed up.
Attached screenshot from Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10262
Summary: wxWidgets TextCtrl in Python
Product: Wine
Version: 0.9.31.
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: roger.marsh(a)btinternet.com
Running Python24-2.4.3_3 with py24-wxPython-2.6.3.3
Adding text to a wxTextCtrl with style wx.TE_RICH2 fails. Style TE_RICH is fine
but I need to be able to colour the text etc. The script was run from an IDLE
session.
Using these oldish versions for compatibility with native FreeBSD versions
used.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9731
Summary: GdiConvertToDevmodeW trying to copy -32 bytes on memcpy
Product: Wine
Version: 0.9.45.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: myxfce(a)gmail.com
Created an attachment (id=8168)
--> (http://bugs.winehq.org/attachment.cgi?id=8168)
Crash report
I'm having problems running an old Win 3.11 game named Mortuum. Wine crashes
before the game start. After some debugging, I noticed the crash happens in
file gdi32/driver.c on function DEVMODEW * WINAPI GdiConvertToDevmodeW(const
DEVMODEA *dmA).
This function tries to memcpy bytes from the structer dmA to the structure dmW
(that was allocated by a HeapAlloc()). Unfortunately, it tries to copy -32
bytes because dmA->dmSize is 0 bytes and CCHDEVICENAME is 32 bytes. I've
attached a small piece of code that shows where the memcpy is done around line
425 on that file.
...
dmW = HeapAlloc(GetProcessHeap(), 0, dmW_size + dmA->dmDriverExtra);
if (!dmW) return NULL;
MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmDeviceName,
CCHDEVICENAME,dmW->dmDeviceName, CCHDEVICENAME);
//===============================CRASH=========================
/* copy slightly more, to avoid long computations */
memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion, dmA->dmSize -
CCHDEVICENAME);
//===============================CRASH=========================
if (dmA->dmSize >= (const char *)dmA->dmFormName - (const char *)dmA +
CCHFORMNAME)
{
MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmFormName,
CCHFORMNAME,
dmW->dmFormName, CCHFORMNAME);
if (dmA->dmSize > (const char *)&dmA->dmLogPixels - (const char *)dmA)
memcpy(&dmW->dmLogPixels, &dmA->dmLogPixels, dmA->dmSize - ((const
char *)&dmA->dmLogPixels - (const char *)dmA));
}
...
I tried to debug more to look for the root of the problem (why dmA->dmSize is
0) but there were too many calls and I couldn't figure out where the dmA
structure was allocated and popullated.
I've attached the crash report and if you need the game to test, just ask, it's
freeware. Tested on 0.9.44 and 0.9.45.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=10115
Summary: Wine should restore the initial graphics mode if an
application exits abnormally
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Sometimes DirectX applications crash and leave your desktop with a changed
resolution e.g. 640x480. This shouldn't happen - wine should restore the
initial graphics mode if an application exited abnormally.
Right now you have to `xrandr -s 0` or use any other utility.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=9886
Summary: GeoInfo hangs if trying to select a street for the
second time
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
Created an attachment (id=8378)
--> (http://bugs.winehq.org/attachment.cgi?id=8378)
patch
This is because our DDEML doesn't call the callback after receiving an ACK when
the hMem parameter doesn't match the current transaction hMem. However it
doesn't remove transaction from the queue so only after the first transaction
the callback will be called. This patch removes the transaction from the queue
however it is not fully correct - there may be asynchronous transactions so the
ACK doesn't need to come in the same order as the request were sent. A correct
code should check the whole list of transactions.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.