http://bugs.winehq.org/show_bug.cgi?id=33558
Bug #: 33558
Summary: WinEventHook receive no event notify about
OBJID_CURSOR
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: orzhvs(a)gmail.com
Classification: Unclassified
Created attachment 44418
--> http://bugs.winehq.org/attachment.cgi?id=44418
WINEDEBUG=+relay,+user32,+hook LANG='zh_CN.utf-8' wine
/usr/local/vboxvm/vmshare/magnify/magnify.exe 2>&1 |grep -iE Win.*Event >
out.txt
There's a method to track mouse move by setting a WinEvent hook:
call SetWinEventHook with
eventMin=eventMax=EVENT_OBJECT_LOCATIONCHANGE(=0x800B) and provide a
WinEventProc
WinEventProc will be notified with event=EVENT_OBJECT_LOCATIONCHANGE
in case idObject=OBJID_CURSOR we know that mouse moved, then get cursor object
by AccessibleObjectFromEvent and further information like the location of the
cursor.
But the fact is, no event with idObject=OBJID_CURSOR is sent in wine.
This is used in windows's zoom-in utility, it does not update frames with mouse
move in wine. To reproduce :
1. copy 'magnify.exe' 'mag_hook.dll' 'mfc42u.dll' from system32 directory of
windows, I used them from xpsp3.
2. run magnify.exe in wine
3. move mouse in and out the dialog, you will find the zoomed-in view updates
almost only when mouse is inside the dialog.
Note that we see frames update when mouse is inside the dialog, it's triggered
from WM_MOUESMOVE, there's no business of WinEvent, but when mouse is outside
there should be.
I saw several SetWinEvent calls successfully in log but no event notify.
--
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=33396
Bug #: 33396
Summary: GetSystemMetrics always reports native resolution with
--with-xinerama.
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: CFSworks(a)gmail.com
Classification: Unclassified
As the summary says, GetSystemMetrics(SM_C{X,Y}SCREEN) always reports the
native resolution, even if an application changes the resolution, unless I
configure Wine with the --without-xinerama option. This can be seen when I run
D3D9 device tests, leading to test failures (see attachments).
I am on the NVIDIA proprietary driver version 313.18, which may be relevant as
this driver does have the "broken" XRandR 1.2. I cannot test with Nouveau
because it doesn't support my GPU.
Even if this is the proprietary driver's fault, I'm still opening this bug on
the WineHQ Bugzilla to track its resolution here, and provide information to
the NVIDIA developers if we do have to report it to them.
--
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=33339
Bug #: 33339
Summary: AION: regularly crash during game
Product: Wine
Version: 1.5.27
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
Hello,
AION regularly crash during game, I joined you two log files.
--
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=33241
Bug #: 33241
Summary: incorrect display of a combobox in a Clipper
application
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ironeman(a)tiscali.it
Classification: Unclassified
As mentioned in http://forum.winehq.org/viewtopic.php?f=8&t=18198, I am using
16-bit Clipper/xBase programs. When I have a listbox, the field is not
correctly initialized, despite the list is ok.
Debugging my application, I have found that it is due to a strange memory
management. I start by saying that Clipper/xBase uses dynamic scoping, so the
value of a variable is the last assigned to it into the stack; a variable can
be local or global (prefixed by m->). When using the dialog that has the
problem, I use the activation command (Fivewin library):
m->mTipoDoc:=.... // assign the global variable m->mTipoDoc
activate DIALOG oDlg centered on init (SettaCombo())
function SettaCombo() // initialization code of the dialog
... // use the global variable m->mTipoDoc but, at this point, when using WINE,
the variable has lost its content and is empty
I solved the problem using a local variable that temporarily holds the value of
the global variable:
m->mTipoDoc:=.... // assign the global variable m->mTipoDoc
local tmpcod:=m->mTipoDoc // to solve the wine bug
activate DIALOG oDlg centered on init (SettaCombo(tmpcod))
function SettaCombo(val)
m->mTipoDoc:=val // to solve the wine bug
... // use the global variable m->mTipoDoc
Evidently the local variable is managed in a different way by WINE and the
error has disappered.
To test this behaviour, I wrote the attached sample program. Into the zip there
is a readme.pdf that explains how it works.
Best regards.
--
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=21573
Summary: Need heap overrun detection at beginning of buffers,
too
Product: Wine
Version: 1.1.37
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
On Linux, valgrind gives nice warnings when you access before
the first byte. It'd be nice if valgrinding Windows apps under Wine
gave the same warnings. For instance, the following program should
give three warnings under valgrind+wine just as it does under valgrind:
#include <stdio.h>
#include <stdlib.h>
int badness_before_n_after ( char* p )
{
return p[-1] + p[10];
}
int main ( void )
{
char* p = malloc(10);
int who_knows = badness_before_n_after(p);
// expect 2 x invalid address yelpage
who_knows += p[5];
if (who_knows == 42)
printf("It's 42 (!)\n");
else
printf("It's not 42 (dull but unsurprising)\n");
free(p);
return 0;
}
--
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=16264
Summary: Builtin Tahoma unreadable when small
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://www.linuxtechs.net/kruch/tb/forum/viewtopic.php?t
=2152&postdays=0&postorder=asc&start=15
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A user said that ConvWPT ran in Wine, but gave a very complicated recipe,
so I tried simplifying it. Along the way, I noticed that ConvWPT's installer
used teeny tiny nearly unreadable fonts; installing Tahoma fixed that
(now they're just small, but readable).
Recipe to reproduce:
1) Visit http://www.linuxtechs.net/kruch/tb/forum/viewtopic.php?t=2152
scroll down to message "Setup Package Part 1 / 4", and
download and unpack each of the four files Setup.part1.rar, Setup.part2.rar,
... Setup.part4.rar
Ignore warnings from rar about duplicate files.
2) Run the resulting setup.exe
The setup program uses small Tahoma text on some screens, and that's
very nearly unreadable unless you install native tahoma, e.g. with
winetricks tahoma.
--
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=31385
Bug #: 31385
Summary: Font in Delphi 3 apps change to "System" after open
Report preview.
Product: Wine
Version: 1.5.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: julio_lists(a)mebamutual.com.ar
Classification: Unclassified
Created attachment 41242
--> http://bugs.winehq.org/attachment.cgi?id=41242
Minimal Delphi app that shows the bug
I'm testing an in-house app written en Delphi 3, the only really annoying
glitch I have found so far happens after a QuickReport preview windows opens.
The Preview and works OK, but then any label drawn in the app uses the System
font.
The effect is akin to bug #29758, but my logs don't include the error reported
there.
Instead, I guess Wine is messing somewhat within the WM_GETFONT and/or
WM_SETFONT calls, yet my debugging abilities are pretty limited.
WM_GETFONT calls aren't returning NULL, but decimal 504, I wonder if that
WM_SETFONT takes that as an invalid handle.
I'm attaching a minimal (kind of, the binary is pretty big) test case.
--
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=21082
Summary: Artrage3 studio pro demo : export fails
Product: Wine
Version: 1.1.35
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: meho_r(a)yahoo.com
Created an attachment (id=25286)
--> (http://bugs.winehq.org/attachment.cgi?id=25286)
Output of terminal when running AR3 from it.
Export function in ArtRage 3 Studio Pro Demo version (as well as in full
version) doesn't work. When trying to export a painting as an image, an error
occurs which states:
"Generic Failure. Not enough memory to perform action."
However, it is not lack of RAM that is the cause of problem (at the time of
testing I had over 2GB free RAM). Also, in ArtRage 2.5 export function works as
expected on the same machine.
I tested this on Ubuntu 9.10 (64bit) and Mandriva 2010.0 (32bit) with multiple
versions of wine (from 1.0.1 to 1.1.3.5).
--
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=11926
Summary: House of the dead 3 won't draw 3d stuff after the 1st
level
Product: Wine
Version: 0.9.57.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugz(a)chipsugar.plus.com
After the first level where everything is fine all the 3d models & scenery is
black. Possibly textures aren't being rendered. Also the words in the menu list
when starting the game don't get drawn. Maybe that's part of the same bug.
--
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=32769
Bug #: 32769
Summary: PowerPoint 2003 hangs when opening test document
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
Created attachment 43263
--> http://bugs.winehq.org/attachment.cgi?id=43263
test file
To reproduce, make sure gdiplus is set to builtin, then open test file and let
PowerPoint render all the thumbnails. If it doesn't hang after having rendered
all of them, try restarting it and reopening file. Sometimes (though rarely) it
doesn't hang.
If I set gdiplus as native, then no hang occurs.
--
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=32957
Bug #: 32957
Summary: Application freezes (related to .net35 ?)
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: denis.bonnenfant(a)diderot.org
Classification: Unclassified
When using SolidWorks 2012, which requires .net35, some functions are freezing
totally the application. Then it has to be killed with wineserver -k
The issue is perfectly reproducible, and the last console output is always the
same in this case :
fixme:ntdll:NtSecureConnectPort
(0x32c85c,L"\\BaseNamedObjects\\FontCachePort3.0.0.0",0x32c844,(nil),0x20477398,(nil),0x32c858,0x131d2518,0x32c850),stub!
dotnet35 and corefonts are installed with winetricks.
Is there a particular debug channel to log for this issue ?
--
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=29072
Bug #: 29072
Summary: wldap32 tests flaky because they rely on external host
ldap.itd.umich.edu
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wldap32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
The wldap32 tests started hanging. It looks like they're trying
to connect forever to ldap.itd.umich.edu, which is unreachable.
--
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=28573
Bug #: 28573
Summary: user32/cursoricon.ok failed,
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
On my i7 last night, I saw the following failure:
../../../tools/runtest -q -P wine -M user32.dll -T ../../.. -p
user32_test.exe.so cursoricon.c && touch cursoricon.ok
fixme:cursor:GetCursorFrameInfo Second parameter non-zero (57005), please
report this!
...
fixme:cursor:GetCursorFrameInfo Second parameter non-zero (57005), please
report this!
cursoricon.c:2139: Test failed: wrong info cursor 0x2003a/(nil)
cursoricon.c:2171: Test failed: wrong info cursor 0x2003a/(nil)
cursoricon.c:2188: Test failed: wrong info cursor 0x2003a/(nil)
make: *** [cursoricon.ok] Error 3
I've only seen this once so far. Filing report partly because
the fixme asked for 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=28547
Bug #: 28547
Summary: ole32/clipboard.ok crashed in
X11DRV_CLIPBOARD_LookupData
Product: Wine
Version: 1.3.29
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Saw this crash just now on my i7:
../../../tools/runtest -q -P wine -M ole32.dll -T ../../.. -p ole32_test.exe.so
clipboard.c
...
wine: Unhandled page fault on read access to 0x000001e3 at address 0x68bd2b12
(thread 0034), starting debugger...
Backtrace:
=>0 X11DRV_CLIPBOARD_LookupData+0x1f(wID=0x2)
[dlls/winex11.drv/clipboard.c:446]
1 X11DRV_CLIPBOARD_SynthesizeData+0x7a(wFormatID=0x2)
[dlls/winex11.drv/clipboard.c:2787]
2 X11DRV_EndClipboardUpdate+0x6e() [dlls/winex11.drv/clipboard.c:2848]
3 CloseClipboard+0x91() [dlls/user32/clipboard.c:285]
4 test_nonole_clipboard+0x3a2() [dlls/ole32/tests/clipboard.c:1295]
5 func_clipboard+0x19() [dlls/ole32/tests/clipboard.c:1546]
6 run_test+0x9e(name="clipboard.c") [include/wine/test.h:556]
7 main+0x23a(argc=<?>, argv=0x1103d0) [include/wine/test.h:624]
446 if (data->wFormatID == wID) return data;
I haven't seen this one before that I recall.
--
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=28503
Summary: comctl32/treeview.ok fails occasionally
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This failed just now on Austin's buildslave with WINEDEBUG=warn+heap:
../../../tools/runtest -q -P wine -M comctl32.dll -T ../../.. -p
comctl32_test.exe.so treeview.c && touch treeview.ok
treeview.c:1512: Test failed: got 0x20318a
treeview.c:1518: Test failed: got 0x20318a
and again on his buildslave without WINEDEBUG:
treeview.c:1512: Test failed: got 0x201c8b
treeview.c:1518: Test failed: got 0x201c8b
I see it's happened at least once before, last month, to someone else:
http://test.winehq.org/data/6ee95c77381791299ae040248897ac58c74f49f6/linux_…
and I think I recall seeing it one other time on the buildbot (not
sure which slave).
Austin's buildslave's info:
os: Debian GNU/Linux testing (wheezy), 3.0.0-1-686-pae, , Advanced Linux
Sound Architecture Driver Version 1.0.24.
ram: 8113 MB
cpu: AMD Phenom(tm) II X4 940 Processor
gpu: GeForce 9800 GTX+/PCI/SSE2/3DNOW! 3.3.0 NVIDIA 285.03
It's possible this is caused by someone playing with the mouse
or keyboard while the tests are running, but seeing it twice in
a row is suspicious.
--
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=28323
Summary: urlmon/tests/protocol.ok slightly flaky:
protocol.c:2892: Test failed: ref=2
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I've seen this twice in two days:
../../../tools/runtest -q -P wine -M urlmon.dll -T ../../.. -p
urlmon_test.exe.so protocol.c && touch protocol.ok
...
protocol.c:979: Test failed: unexpected call ReportResult
protocol.c:984: Test failed: hrResult = 80004004, expected: 00000000
protocol.c:989: Test failed: dwError == ERROR_SUCCESS
protocol.c:2892: Test failed: ref=2
protocol.c:746: Test failed: unexpected call ReportProgress_CONNECTING
This time, it was with WINEDEBUG=warn+heap, on a system with:
os: Ubuntu 10.04.3 LTS, 2.6.32-33-generic, pulseaudio
0.9.21-63-gd3efa-dirty, Advanced Linux Sound Architecture Driver Version
1.0.21.
ram: 3212 MB
cpu: Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz
gpu: GeForce GT 240/PCI/SSE2 3.2.0 NVIDIA 195.36.24
I see a few vaguely similar problems on windows at
http://test.winehq.org/data/tests/urlmon:protocol.html
so perhaps these tests still need some love.
--
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=28298
Summary: riched20/editor.ok cursort position test flaky
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I just had a test fail (under WINEDEBUG=warn+heap, but I doubt that matters)
like this:
../../../tools/runtest -q -P wine -M riched20.dll -T ../../.. -p
riched20_test.exe.so editor.c && touch editor.ok
...
editor.c:6026: Test failed: Cursor is at 0 instead of 8
That's not a new problem; it was mentioned back in
http://www.winehq.org/pipermail/wine-devel/2008-September/069299.html
and showed up here:
http://www.winehq.org/pipermail/wine-devel/2010-December/088198.html
--
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=28295
Summary: mshtml/htmldoc.ok flaky
Product: Wine
Version: 1.3.27
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This test just failed for me with
../../../tools/runtest -q -P wine -M mshtml.dll -T ../../.. -p
mshtml_test.exe.so htmldoc.c && touch htmldoc.ok
...
htmldoc.c:2358: Test failed: unexpected call UpdateUI
htmldoc.c:2636: Test failed: unexpected call Exec_UPDATECOMMANDS
I see that particular failure has happened before:
http://test.winehq.org/data/5d22f3aa145795af0137f580959671c046f3d37a/linux_…http://www.winehq.org/pipermail/wine-devel/2010-November/087789.html
--
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=15027
Summary: Microsoft Office 2007: Installer takes too much time to
check the product key
Product: Wine
Version: 1.1.3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
After you finish typing the product key, the installer takes around a minute to
check if it's correct.
--
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=9447
Summary: Supreme Commander's FMVs do not skip frames
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ajrich(a)earthlink.net
This bug causes the videos to move slower than they're supposed to, and desync
with sound (if you've made the changes needed to get sound from the game - see
the AppDB for details.) Affects mission briefings in the campaign, and messages
recieved during campaign missions.
--
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=30823
Bug #: 30823
Summary: mono program incorrectly writing Chinese characters to
console with Wine mono
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Compile the following sample:
--- snip ---
using System;
using Gtk;
public class GtkHelloWorld {
public static void Main() {
Console.WriteLine("abcd1234一二三四五");
}
}
--- snip ---
$ mcs -pkg:gtk-sharp-2.0 helloword.cs
$ mcs --version
Mono C# compiler version 2.10.5.0
2. install mono210 with an older version of Wine (wine-1.4), or use the builtin
wine-mono-0.0.4 with the latest wine (wine-1.5.5)
3. start helloword.exe with wine:
$ wine helloword.exe
Expect result:
Outputting "abcd1234一二三四五"
Actual result:
Outputting "abcd1234一二三四五奈奈五"
What the worse is, helloword.exe never quit, it fall into a infinite loop of
WriteConsoleW()
Additional info:
1. wine-1.4 + `winetricks dotnet20` works well with the above helloword.exe
2. WinXP + dotnet4 works well with the above helloword.exe
3. I can't make it work on WinXP + mono210, always get a "Initial error
0xc0000135"
4. The bug disappear after removing Chinese string from Console.WriteLine()
5. The bug has different behaviors after adding English letters at the end of
the string, for example: Console.WriteLine("abcd1234一二三四五a"), the output is:
"abcd1234一二三四五a四五a錫a"
This time the program will not fall into infinite loop.
6. The bug disappear if I redirect out put to a file:
$ wine helloword.exe > hello.txt
7. Bug 10063 is really annoying while using winedbg to tracing this bug...
Regards.
--
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=32666
Bug #: 32666
Summary: Black background in PowerPoint 2003
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b7.10110111(a)gmail.com
Classification: Unclassified
Created attachment 43097
--> http://bugs.winehq.org/attachment.cgi?id=43097
Screenshot
See the screenshot. The black background is not how Powerpoint should look.
This is a regression:
841214ddb4d4dc620e6b51dfe6655b585d423edc is the first bad commit
commit 841214ddb4d4dc620e6b51dfe6655b585d423edc
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed Nov 21 19:20:27 2012 +0100
user32: Don't check for driver events before normal messages in
PeekMessage.
:040000 040000 79793f282ab4ee789b1f07d7e8dd89c82e4e02ab
504f597e5c86ae4e9ae21713e8a8bb27969f0d5a M dlls
Resetting directly to this commit makes the whole slide black, not only
background, while using wine-1.5.21 makes it look as in screenshot.
--
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=26759
Summary: SIV Fails to show Internet Access state - needs
IsInternetConnected() from connect.dll
Product: Wine
Version: 1.3.17
Platform: x86
URL: http://rh-software.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ray(a)pobox.co.uk
For Windows Vista and later SIV should show the Internet access state, but this
fails as it is unable to load IsInternetConnected() from connect.dll. I tried
to get this to work by taking DLLs from W7 SP1 but was unable to get this to
work. As I added more DLLs I got as far as:
err:module:import_dll Library API-MS-Win-Core-LocalRegistry-L1-1-0.dll (which
is needed by L"Z:\\home\\ray\\siv\\nlaapi.dll") not found
err:module:import_dll Library nlaapi.dll (which is needed by
L"Z:\\home\\ray\\siv\\netshell.dll") not found
err:module:import_dll Library netshell.dll (which is needed by
L"Z:\\home\\ray\\siv\\connect.dll") not found
Currently all the DLLs are there, there are no error messages, but none of the
DLLs load.
To show the DLLs loaded do Menu->Windows->DLLs by Name.
--
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=17702
Summary: Ever17 requires the Courier New font
Product: Wine
Version: 1.1.16
Platform: All
URL: http://www.download.com/Ever17-Out-of-Infinity/3000-
7494_4-10573528.html?tag=pdp_prod
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: s.guidoni(a)tin.it
Ever17 crashes at startup with "page fault on read access to 0x72756f43 in
32-bit code" if the Courier New font is not installed.
--
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=23866
Summary: Microsoft Wine Guide crashes, unimplemented function
msvideo.dll16._MCIWNDCREATE
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Created an attachment (id=29963)
--> (http://bugs.winehq.org/attachment.cgi?id=29963)
+relay,+int21,+mmio log in Windows XP mode
This bug applies to Microsoft Wine Guide 1.0a, a multimedia CD-ROM from 1995.
On attempting to play a video clip, the program crashes with console output
like this:
wine: Call from 0x7b836872 to unimplemented function
msvideo.dll16._MCIWNDCREATE, aborting
wine: Unimplemented function msvideo.dll16._MCIWNDCREATE called at address
0x7b836872 (thread 001d), starting debugger...
Unhandled exception: unimplemented function msvideo.dll16._MCIWNDCREATE called
in 32-bit code (0x7b836872).
However, there is a (probably related) issue with the program trying
unsuccessfully to copy some DLLs to the Windows system directory on startup.
Start wine.exe in the root directory of the CD-ROM. A Microsoft Home splash
window opens, then there are several error dialog boxes with text like this:
"The file C:\windows\SY32\iccvid.dll open, which Wine Guide needs to modify.
Please close all other open programs or restart Windows." The dialog box has
Abort/Retry/Ignore buttons.
Pressing Ignore each time allows the program to continue. With Wine set to
Windows XP mode (the program works fine under Windows XP), the dialog appears
for each of these DLLs: iccvid.dll, ir32_32.dll, msadp32.acm, msrle32.dll,
msvideo.dll.
The program's main window then opens. If you click the film strip button near
the centre of the window (which should cause a video to play), the program
crashes with a Wine error dialog saying winevdm.exe needs to close, and console
output as above.
Two attached logs:
Wine in Windows XP mode, WINEDEBUG=+relay,+int21,+mmio. Start wine.exe, click
Ignore for each dialog box, then click film strip button in main window.
Wine in Windows 3.1 mode, WINEDEBUG=+relay,+int21. Start wine.exe, dismiss all
dialogs until program exits with out of memory dialog.
I don't know why the program tries to look in C:\windows\SY32\, but if you set
the Wine windows version to Windows 3.1, it instead looks in C:\windows\SY\
(and tries to copy more/different files there).
--
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=12738
Summary: Karafun: plays song, but doesn't display lyrics (kfn
file)
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.karafun.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leesew(a)gmail.com
When trying to play a CDG karaoke file, the display remains black.
wine output:
fixme:mpeg3:MPEG3_StreamSize misses the block header overhead
fixme:file:WriteFile Could not access memory (0x18c0000,2359296) at first, now
OK. Protected by DIBSection code?
fixme:dsalsa:IDsDriverBufferImpl_SetVolumePan (0x143f90,0x32faf8): stub
This used to work with older versions by the way. Let's say about 4 months ago
- but since then there have been new versions of Karafun. The old ones aren't
downloadable anymore.
--
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=15974
Summary: Don't open internal window fullscreen on startup in
Metatrader 4
Product: Wine
Version: 1.1.8
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zburguy(a)gmail.com
When open the Metatrader 4 internal window open only smoll.
And where swetch internal windows they have artefact.
You may yerself free to try this terminal.
P.S. Terminal save previous internal windows location and as open on next
startup.
Sory for my English.
Log in smoll on startup:
fixme:reg:GetNativeSystemInfo (0x7ee7dc) using GetSystemInfo()
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:thread:NtSetInformationThread info class 17 not supported yet
fixme:debugstr:CheckRemoteDebuggerPresent (0xffffffff)->(0x83ee4e): Stub!
This when use Strategy Tester:
err:ntdll:RtlpWaitForCriticalSection section 0x107d188 "?" wait timed out in
thread 002f, blocked by 0034, retrying (60 sec)
fixme:heap:RtlCompactHeap (0x110000, 0x0) stub
--
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=33616
Bug #: 33616
Summary: secur32: assertion failure in libgcrypt when loding a
page (wine iexplore)
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: secur32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Classification: Unclassified
Created attachment 44498
--> http://bugs.winehq.org/attachment.cgi?id=44498
Log with +ieframe,+secur32
Using wine iexplore to navigate to
https://developer.mozilla.org/en-US/demos/detail/bananabread
produce an assertion failure in libgcrypt, just after
004b:trace:secur32:schan_QueryContextAttributesW context_handle 0x22ed298,
attribute 0x53, buffer 0x467d63c
(when pasting the url with http, a redirection to https occur)
To get the log, the 32bit iexplore.exe.so must be used:
- when using the 64bit iexplore, winedbg failed to catch the crash,
the page loads with lots of different failures and later winedbg crash
(that's for a different bug)
- when calling iexplore with the target url, IEMain is called with an
ANSI string as URL (that's for a different bug)
--
By by ... Detlef
--
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=32137
Bug #: 32137
Summary: Kugou2012: crashes when installing
Product: Wine
Version: 1.5.16
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
Created attachment 42403
--> http://bugs.winehq.org/attachment.cgi?id=42403
'kugou_crash.txt' is the log
Kugou(酷狗音乐) crashed wine during installing and there were four error windows.
You can reproduce it follow:
0. download it: http://downmini.kugou.com/Kugou2012.exe ;
1. 'wine Kugou2012.exe' to begin the installation
*(there was another bug(32136) which cause some text can't display normally,
you can get a workaroud here: http://bugs.winehq.org/show_bug.cgi?id=32136 );
3.just let it install until the four error windows appear, and it will crash
Wine.
my test environment:
- Ubuntu 12.04.1
- Wine 1.1.15
- Kugou2012
attachments:
'kugou_crash.txt' is the log;
'picture.png' is what it look like when crashing wine.
--
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=37505
Bug ID: 37505
Summary: window.screenLeft fails silently and stops script
execution
Product: Wine-gecko
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: freddi34(a)yahoo.de
Distribution: ---
Created attachment 49894
--> https://bugs.winehq.org/attachment.cgi?id=49894
demonstration of the problem
When a website's javascript accesses the property `window.screenLeft` or
`window.screenTop` to get the screen position of the viewport's top left
corner, the script is stopped without returning a value or `undefined` or
raising an error. It appears wine-gecko implements this property (however it
does not even implement Firefox's cross-browser `window.screenX`).
This is a problem because it neither returns `undefined` nor raises an error
that could be handled or work-around. Websites that use `window.screenLeft`
fail to function.
wine 1:1.7.28-0ubuntu amd64
--
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=23843
Summary: Flickering window title bar in Su Doku Active in
virtual desktop mode
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markk(a)clara.co.uk
Created an attachment (id=29929)
--> (http://bugs.winehq.org/attachment.cgi?id=29929)
Partial +relay log
This bug applies to Su Doku Active by Greenstreet Games. Unfortunately I don't
think there is a freely-downloadable version of this game.
When running in virtual desktop mode, the window title text flickers as the
mouse is moved. There is no flickering in Windows XP.
The game requires MFC42.DLL, so it could be some call to that which is calling
SetWindowTextA repeatedly as the mouse is moved. It may be that Windows checks
the title text being set, and optimises out the rendering if the text is the
same as the existing title.
Attached is an extract from a WINEDEBUG=+relay log which shows several calls to
SetWindowTextA.
--
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=31924
Bug #: 31924
Summary: mixerGetDevCaps does not support mixer device handles
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nicode(a)gmx.net
Classification: Unclassified
The Windows SDK documentation states: "This function also accepts a mixer
device handle returned by the mixerOpen function as the uMxId parameter. The
application should cast the HMIXER handle to a UINT."
This feature is missing in the mixerGetDevCaps(W) implementation.
It might be fixed by using mixerGetID((HMIXEROBJ)uDeviceID, &uMixerId,
MIXER_OBJECTF_HMIXER) to resolve the handle to an identifier if uDeviceID is
greater than or equal to mixerGetNumDevs().
--
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=31778
Bug #: 31778
Summary: Unhandled page fault while starting CEDAR Logic
simulator (A wxWidgets Windows application)
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matka.poohatka(a)gmail.com
Classification: Unclassified
Created attachment 41814
--> http://bugs.winehq.org/attachment.cgi?id=41814
Backtrace generated by Wine bug report tool
Hello,
I wanted to use CEDAR logic simulator <http://cedarlogic.scienceontheweb.net/>,
however it does not start, informing me of an unhandled page fault instead.
>From command line:
filip@Filip-PC:*path*$ wine cedarls.exe
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: cannot open shared
object file: No such file or directory
wine: Unhandled page fault on write access to 0x4d000154 at address 0x728f70
(thread 0009), starting debugger...
The program works fine under Windows (naturally).
I attached the bug report Wine generated. Hope this helps.
--Filip
--
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=27388
Summary: IE8 UTF-7 doesn't work
Product: Wine
Version: 1.3.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spammis(a)spam.la
Created an attachment (id=35017)
--> (http://bugs.winehq.org/attachment.cgi?id=35017)
stderr output
IE8 doesn't display UTF-7 HTML files at all.
Works fine under real Windows:
C:\Users\username\testhtml>c:\progra~1\intern~1\iexplore
file:///c:/Users/username/testhtml/test.html
using:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0;
.NET CLR 2.0.50727; SLCC2; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center
PC 6.0)
Doesn't work under Wine:
$ wine c:\\prog~fbu\\inte~h1a\\iexplore file:///z:/home/test/test.html 2>
dump.log
using:
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
Wine IE8 installed using "rm -rf ~/.wine; winetricks ie8".
The relevant stderr output is probably this:
fixme:nls:WideCharToMultiByte UTF-7 not supported
The same message about UTF-7 not being supported is also mentioned in bug
18659, but this is probably a different bug.
Note that Windows IE is 64-bit while Wine IE is 32-bit using a 32-bit Linux
kernel. I'm not sure if this matters. Both IE versions were used on the same
computer, so all hardware is the same.
--
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=30323
Bug #: 30323
Summary: Unigine Heaven DX11 Benchmark 3.0 Basic Edition:
Ambient Occlusion causes graphical issue
Product: Wine
Version: 1.5.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jsims2359(a)gmail.com
Classification: Unclassified
In the Unigine Heaven DX11 Benchmark 3.0 Basic Edition, enabling Ambient
Occlusion distorts graphics. Disabling Ambient Occlusion returns graphics to
normal. You can toggle it from within the app while the scenes are being
rendered. It's pretty cool.
wine-1.5.1 (compiled from source)
NVIDIA GTX 295
295.33 drivers
Fedora 16 x86_64
gcc 4.6.3
--
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=34639
Bug #: 34639
Summary: Guild Wars: Crash on starting the game
Product: Wine
Version: 1.7.3
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
Created attachment 46169
--> http://bugs.winehq.org/attachment.cgi?id=46169
Terminal output of a successfull and an unsuccessfull start
Besides the other 2 bugs that could crash or hang the launcher
(http://bugs.winehq.org/show_bug.cgi?id=32061 and
http://bugs.winehq.org/show_bug.cgi?id=32062) I have also noticed that the
launcher closes sometimes unexpected. After upgrading Wine to version 1.7.3 and
libx11 to version 1.6.1 I'm not able to reproduce the other 2 bugs anymore. But
the unexpected closing of the launcher still happens sometimes (~every tenth
try). It can appear on using only the image parameter (which will just download
all content from the game and then exit) and on starting the game normally. In
the attachments is a log which shows a successfull and an unsuccessfull start.
--
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=29924
Bug #: 29924
Summary: control and inetcpl show some texts in wrong language
Product: Wine
Version: 1.4-rc4
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lauri.kentta(a)gmail.com
Classification: Unclassified
LC_MESSAGES=en_GB.UTF-8 LC_CTYPE=fr_FR.UTF-8 ./wine control
The command above makes Wine use mostly English, but a few texts are in French
instead: the Control panel title, the inetcpl menu item and description,
inetcpl title and the text that should say "Security settings for zone:" on the
Security tab.
Using en_US instead of en_GB works fine. Apparently Wine does something strange
when it can't find a translation that matches exactly the given LC_MESSAGES
locale.
How to reproduce:
* Make sure you have the required locales on your system
* Set LC_MESSAGES=en_GB.UTF-8
* Set LC_CTYPE=fr_FR.UTF-8
* Run wine control
--
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=36830
Bug ID: 36830
Summary: Nexon Atlantica Online: broken launcher/updater
reports 'Atlantica is currently under maintenance.
Please try again later' (relies on 'wininet' to
initialize sockets API)
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
split this off from bug 22479
An up-to-date client is need for successful login which in turn can only be
updated by using the launcher 'AtlanticaRun.exe'.
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Nexon/Atlantica
$ WINEDEBUG=+tid,+seh,+relay wine ./AtlanticaRun.exe >>log.txt 2>&1
...
0024:Call KERNEL32.WideCharToMultiByte(00000000,00000000,0051e82c
L"auth.atlantica.nexon.net",ffffffff,0033e334,00000100,00000000,00000000)
ret=0040f27f
0024:Ret KERNEL32.WideCharToMultiByte() retval=00000019 ret=0040f27f
0024:Call KERNEL32.WideCharToMultiByte(00000000,00000000,0051e85e
L"8.31.100.59",ffffffff,0033e544,00000100,00000000,00000000) ret=0040f27f
0024:Ret KERNEL32.WideCharToMultiByte() retval=0000000c ret=0040f27f
...
0024:Call user32.SetWindowTextW(000100a8,0033e034 L"Connecting to Front
Server...") ret=0042c4ae
...
0024:Call KERNEL32.MultiByteToWideChar(00000000,00000000,004b1cf4
"auth.atlantica.nexon.net",ffffffff,0051df80,00000100) ret=0047282d
0024:Ret KERNEL32.MultiByteToWideChar() retval=00000019 ret=0047282d
0024:Call ws2_32.gethostbyname(0051de80 "auth.atlantica.nexon.net")
ret=0047287b
0024:Ret ws2_32.gethostbyname() retval=00000000 ret=0047287b
...
0024:Call KERNEL32.MultiByteToWideChar(00000000,00000000,004b1df4
"8.31.100.59",ffffffff,0051df80,00000100) ret=0047282d
0024:Ret KERNEL32.MultiByteToWideChar() retval=0000000c ret=0047282d
0024:Call ws2_32.inet_addr(0051de80 "8.31.100.59") ret=004728c7
0024:Ret ws2_32.inet_addr() retval=3b641f08 ret=004728c7
0024:Call ws2_32.htons(000014b4) ret=004728de
0024:Ret ws2_32.htons() retval=0000b414 ret=004728de
0024:Call KERNEL32.GetTickCount() ret=00472925
0024:Ret KERNEL32.GetTickCount() retval=021fe7bc ret=00472925
0024:Call
ws2_32.WSASocketA(00000002,00000001,00000000,00000000,00000000,00000001)
ret=00472963
0024:Ret ws2_32.WSASocketA() retval=ffffffff ret=00472963
...
<repeats>
0024:Call user32.MessageBoxW(00030076,0056e280 L"Atlantica is currently under
maintenance. Please try again later.\r\nIf it's not a maintenance problem,
please check your connection, firewall, and/or router settings.",00498558
L"Error",00000040) ret=00427dce
--- snip ---
Debugger:
--- snip ---
Wine-dbg>bt
Backtrace:
=>0 0x7df3718c WS_gethostbyname(name="auth.atlantica.nexon.net")
[/home/focht/projects/wine/wine.repo/src/dlls/ws2_32/socket.c:5284] in ws2_32
(0x0033e270)
1 0x00472c35 in atlanticarun (+0x72c34) (0x0033e288)
2 0x0041dfb5 in atlanticarun (+0x1dfb4) (0x0033e2a8)
3 0x00479648 in atlanticarun (+0x79647) (0x0033e2b4)
4 0x00479aee in atlanticarun (+0x79aed) (0x0033e2f8)
5 0x0042b476 in atlanticarun (+0x2b475) (0x0033e390)
6 0x0042767d in atlanticarun (+0x2767c) (0x0033e3b0)
7 0x00429b35 in atlanticarun (+0x29b34) (0x0033e418)
8 0x00429bc4 in atlanticarun (+0x29bc3) (0x0033e438)
...
Wine-dbg>p num_startup
0
--- snip ---
Some "genius" decided to call this API without prior 'WSAStartup'.
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms738524%28v=vs.85%…
--- quote ---
Return value
If no error occurs, gethostbyname returns a pointer to the hostent structure
described above. Otherwise, it returns a null pointer and a specific error
number can be retrieved by calling WSAGetLastError.
Error code Meaning
WSANOTINITIALISED
A successful WSAStartup call must occur before using this function.
--- quote ---
It gets better ... there is no 'WSAStartup' import at all.
Dumping 'AtlanticaRun.exe' imports table reveals:
(I added descriptions for ordinal-only)
--- snip ---
...
12. ImageImportDescriptor:
OriginalFirstThunk: 0x000A7434
TimeDateStamp: 0x00000000 (GMT: Thu Jan 01 00:00:00 1970)
ForwarderChain: 0x00000000
Name: 0x000A7F72 ("WS2_32.dll")
FirstThunk: 0x0008A6FC
Ordinal/Hint API name
------------ ---------------------------------------
0x0013 (ordinal only) -> "send"
0x0008 (ordinal only) -> "htonl"
0x000F (ordinal only) -> "ntohs"
0x000A (ordinal only) -> "ioctlsocket"
0x000C (ordinal only) -> "inet_ntoa"
0x0010 (ordinal only) -> "recv"
0x0009 (ordinal only) -> "htons"
0x0003 (ordinal only) -> "closesocket"
0x0034 (ordinal only) -> "gethostbyname"
0x0052 "WSASocketA"
0x006F (ordinal only) -> "WSAGetLastError"
0x0049 "WSASend"
0x0044 "WSARecv"
0x000B (ordinal only) -> "inet_addr"
0x0004 (ordinal only) -> "connect"
13. ImageImportDescriptor:
OriginalFirstThunk: 0x000A6E14
TimeDateStamp: 0x00000000 (GMT: Thu Jan 01 00:00:00 1970)
ForwarderChain: 0x00000000
Name: 0x000A7F8E ("IPHLPAPI.DLL")
FirstThunk: 0x0008A0DC
Ordinal/Hint API name
------------ ---------------------------------------
0x0082 "IcmpSendEcho"
--- snip ---
What most likely happens is that the stupid code relies on 'wininet' to
initialize sockets API (remains mapped the whole time).
There is an early 'wininet' API call before trying auth server/explicit Windows
sockets API:
--- snip ---
...
0024:Ret PE DLL (proc=0x7de7e038,module=0x7de40000
L"wininet.dll",reason=PROCESS_ATTACH,res=0x1) retval=1
0024:Starting process L"C:\\Nexon\\Atlantica\\AtlanticaRun.exe"
(entryproc=0x4438bd)
...
0024:Call wininet.InternetOpenW(00502c90
L"AtlanticaRun",00000000,00000000,00000000,00000000) ret=004351c0
...
0024:Ret wininet.InternetOpenW() retval=00000001 ret=004351c0
...
--- snip ---
'winetricks -q wininet' works around.
Unlike the Wine builtin which uses BSD sockets API directly, native binds to
'ws2_32' and calls 'WSAStartup' from 'InternetOpen' to initialize sockets API.
--- snip ---
0024:Ret PE DLL (proc=0x76c0137c,module=0x76c00000
L"WININET.dll",reason=PROCESS_ATTACH,res=0x1) retval=1
0024:Starting process L"C:\\Nexon\\Atlantica\\AtlanticaRun.exe"
(entryproc=0x4438bd)
...
0024:Call KERNEL32.CreateMutexA(00000000,00000000,76c07b6c
"WininetStartupMutex") ret=76c07489
0024:Ret KERNEL32.CreateMutexA() retval=00000070 ret=76c07489
...
0024:Call advapi32.RegOpenKeyExA(80000002,76c05020
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet
Settings",00000000,00000001,0033e3f4) ret=76c0521b
0024:Ret advapi32.RegOpenKeyExA() retval=00000000 ret=76c0521b
...
0024:Call advapi32.RegQueryValueExA(00000064,76c07680
"BadProxyExpiresTime",00000000,0033e3d8,0033e3d4,0033e3c8) ret=76c05262
0024:Ret advapi32.RegQueryValueExA() retval=00000002 ret=76c05262
...
0024:Call ws2_32.WSAStartup(00000101,0033e378) ret=76c16d16
0024:Ret ws2_32.WSAStartup() retval=00000000 ret=76c16d16
...
0024:Call KERNEL32.MultiByteToWideChar(00000000,00000000,004b1cf4
"auth.atlantica.nexon.net",ffffffff,0051df80,00000100) ret=0047282d
0024:Ret KERNEL32.MultiByteToWideChar() retval=00000019 ret=0047282d
0024:Call ws2_32.gethostbyname(0051de80 "auth.atlantica.nexon.net")
ret=0047287b
...
0024:Ret ws2_32.gethostbyname() retval=00163778 ret=0047287b
0024:Call ws2_32.htons(000014b4) ret=004728de
0024:Ret ws2_32.htons() retval=0000b414 ret=004728de
...
0024:Call
ws2_32.WSASocketA(00000002,00000001,00000000,00000000,00000000,00000001)
ret=00472963
0024:Ret ws2_32.WSASocketA() retval=000000f4 ret=00472963
...
--- snip ---
It should be ok to duplicate Windows at least for the part of having
'WSAStartup' called from 'InternetOpenW' and tearing it down with
'InternetCloseHandle'.
Using 'DllMain' function for that would be bad idea and even MS advises against
it.
$ sha1sum Atlantica_Downloader.exe
814aa0c4fc441e5ab177328a10da59537ef3302b Atlantica_Downloader.exe
$ du -sh Atlantica_Downloader.exe
2.5M Atlantica_Downloader.exe
$ wine --version
wine-1.7.21-19-g8812193
Regards
--
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=29560
Bug #: 29560
Summary: RagTime 5.6.5 installer does not respond to
mouseclicks properly
Product: Wine
Version: 1.2.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
While testing bug 15427, I noticed that the installer's buttons don't respond
to mouse clicks unless you alt-tab away and back, or run in a virtual desktop.
It responds to keystrokes and autohotkey ControlClick commands just fine,
though.
Problem was seen in every version of wine tested: 1.2.3, 1.3.14, 1.3.15,
1.3.28, git.
(Bug 26374 was for the same installer, might indicate it handles messages
in an unusual manner?)
--
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=32777
Bug #: 32777
Summary: winmm:mci fails if the current directory is read-only
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
Classification: Unclassified
The winmm:mci conformance test fails if the current directory is read-only.
This typically happens if you run it from a read-only network share for
instance.
z:\wine\dlls\winmm\tests> winmm_crosstest.exe mci
mci.c:394: [MCI] with 5 drivers
mci.c:765: Test failed: mci save returned MCIERR_FILE_NOT_SAVED
mci.c:768: Test failed: mci save returned MCIERR_FILE_NOT_SAVED
mci.c:773: Test failed: Save must not rename the original file; DeleteFile
returned 5
mci.c:804: Tests skipped: Cannot open waveaudio!tempfile.wav for playing
(MCIERR_FILE_NOT_FOUND), skipping
mci.c:942: Tests skipped: Cannot open tempfile.wav for playing
(MCIERR_FILE_NOT_FOUND), skipping
mci.c:1171: Tests skipped: Cannot open tempfile.wav for auto-play, skipping
mci: 194 tests executed (0 marked as todo, 3 failures), 3 skipped.
It should chdir() to a safe location, such as the temporary directory, before
doing the tests that try to write to the current directory.
--
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=37506
Bug ID: 37506
Summary: object.setAttribute('') fails silently and stops
script execution
Product: Wine-gecko
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
Assignee: jacek(a)codeweavers.com
Reporter: freddi34(a)yahoo.de
Distribution: ---
Created attachment 49895
--> https://bugs.winehq.org/attachment.cgi?id=49895
demonstration of the problem
When a website's javascript attempts to use `setAttribute` to set a style, the
script is stopped without raising an error.
Although `object.style.property=` is more common, it happens that websites use
`setAttribute` because it works in other browsers. Windows applications that
embed Internet Explorer to display and interact with such web sites don't
function properly, especially there is no error raised.
wine 1:1.7.28-0ubuntu amd64
--
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=35455
Bug ID: 35455
Summary: 酷狗音乐盒(KuGou Music) hangs
Product: Wine
Version: 1.7.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Classification: Unclassified
Created attachment 47328
--> http://bugs.winehq.org/attachment.cgi?id=47328
terminal output.txt
0. download from http://downmini.kugou.com/kugou7560.exe
$ sha1sum kugou7560.exe
54bbbd51d9bd9c533040cbfc592bae2bdbe97715 kugou7560.exe
1. install it
2. go to the folder of it, run
wine KuGou.exe
3. the problem hangs, I had to wineserver -k
--
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=29238
Bug #: 29238
Summary: Star Trek Armada II: Game crashes when attempting to
launch a network game
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: erik.weatherwax(a)gmail.com
Classification: Unclassified
Created attachment 37774
--> http://bugs.winehq.org/attachment.cgi?id=37774
Console output with backtrace
See bug 2271. Game launches fine in clean wineprefix. Selecting Multiplayer
-> Local Area Network (TCP/IP) from the opening menu leads to the attached
backtrace. This also occurs when selecting Multiplayer -> Internet - Manual IP
-> (blank IP) -> OK.
--
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=37064
Bug ID: 37064
Summary: Ultima IX sometimes crashes on exit
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: cthielen(a)gmail.com
Created attachment 49253
--> http://bugs.winehq.org/attachment.cgi?id=49253
Wine backtrace of crash
The crash is only after the game has completely exited and does not always
happen.
Before the crash, there's also some curious output on the terminal, in
particular, a call to wined3d_unregister_window that wined3d was not tracking:
fixme:d3d:check_fbo_compat Format WINED3DFMT_R16G16_UNORM with rendertarget
flag is not supported as FBO color attachment, and no fallback specified.
fixme:d3d:check_fbo_compat Format WINED3DFMT_R16G16B16A16_UNORM with
rendertarget flag is not supported as FBO color attachment, and no fallback
specified.
fixme:win:EnumDisplayDevicesW ((null),0,0x32e8c8,0x00000000), stub!
fixme:d3d:check_fbo_compat Format WINED3DFMT_R16G16_UNORM with rendertarget
flag is not supported as FBO color attachment, and no fallback specified.
fixme:d3d:check_fbo_compat Format WINED3DFMT_R16G16B16A16_UNORM with
rendertarget flag is not supported as FBO color attachment, and no fallback
specified.
fixme:win:EnumDisplayDevicesW ((null),0,0x32e6a8,0x00000000), stub!
err:d3d:wined3d_unregister_window Window 0x10058 is not registered with
wined3d.
wine: Unhandled page fault on read access to 0x0000003c at address 0x5d5c66
(thread 0009), starting debugger...
fixme:dbghelp_msc:pe_load_debug_directory This guy has FPO information
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
--
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=25553
Summary: Sometimes 'make test' hangs after an 'under-run'
error.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max+winebugs(a)mtew.isa-geek.net
Sometimes the 'msi' test will hang after reporting two 'under-run' errors.
I frequently run test builds against the Git repository. The sequence of steps
is scripted and consists of:
1) change directory to the working repository directory.
2) If 'Makefile' exists, run 'make distclean'
3) run './configure --prefix="$HOME" --with-x' ... (-march=... and -L=...)
4) run 'make depends'
5) run 'make all'
6) run 'make -k test'
7) run 'make testclean'
Step 6) will usually hang. a 'ps a' shows a process 'msi.c' (or something like
it). 'kill' that process and the test runs to completion.
If it hangs, it will hang consistently. Occasionally something changes in the
audio whatever and it completes without problems, only to have the problem
recur when something else changes.
I have logs and can break out the appropriate sections if needed.
--
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=32498
Bug #: 32498
Summary: installer of PPTV: "fell into a bad loop"
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: jscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jactry92(a)gmail.com
Classification: Unclassified
Created attachment 42873
--> http://bugs.winehq.org/attachment.cgi?id=42873
The Log
This a follow up of Bug 32160 .
You can reproduce it follow:
0. download it
md5sum pptvsetup_3.2.1.0076.exe
0798f55492a75b9461cacd48f038f562 pptvsetup_3.2.1.0076.exe ;
1. 'winetricks -q mfc42' to get a workaround ;
2. 'wine pptvsetup_3.2.1.0076.exe' and the program will not do anything after
this line was printed: "fixme:atl:AtlModuleInit SEMI-STUB (0x6d63f78 0x6d64000
0x6cf0000)
" and it does not exit.
And 'winetricks -q jscript' can get a workaround for it.
my test enviroment:
- Ubuntu 12.10 32bit
- wine-1.5.19-244-gf28324a
- pptvsetup_3.2.1.0076
--
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.