http://bugs.winehq.org/show_bug.cgi?id=23996
Summary: alt.binz version 0.25.0 not loading
Product: Wine
Version: 1.2
Platform: x86
URL: http://www.altbinz.net/
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leo_mancini(a)yahoo.com
Created an attachment (id=30137)
--> (http://bugs.winehq.org/attachment.cgi?id=30137)
Alt.binz 0.25.0 not working... Here is the error message
Hi all,
When loading alt.binz program, it does not load at all.
and displays the error message as attached in the screenshot.
It used to work prior to my upgrade to Opensuse 11.3 when I was using version
11.2 instead.
--
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=18390
Summary: Roblox can't join a game
Product: Wine
Version: 1.1.20
Platform: Other
URL: http://roblox.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
After working around bug 18388 and bug 18389,
trying to join a game fails; the browser says
it can't start the game, and tells you to start
the app (which you already did). On the console,
one sees a suspicious error message from gecko:
fixme:shdocvw:HttpNegotiate_BeginningTransaction (0x5c239a8)->(L"" L"" 0
0x33c794)
0[15c4c8]: file (null), line 0: uncaught exception: [Exception... "Unexpected
error" nsresult: "0x8000ffff (NS_ERROR_UNEXPECTED)" location: "JS frame ::
http://www.roblox.com/ScriptResource.axd?d=lz2oPY8_Yxfc8W_Nr5tWGxJ8z2w_ENPF…
:: anonymous :: line 2144" data: no]
Possible workaround: launch games directly using e.g.
wine roblox.exe -play
http://www.roblox.com/Game/join.ashx?jobID=cc310936-d9bd-46a5-99cd-494d6b14…
as mentioned at http://forums.roblox4linux.co.cc/index.php?topic=37.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=30985
Bug #: 30985
Summary: Event handling in external (non-default) monitor issue
Product: Wine
Version: 1.5.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: marco_silva85(a)sapo.pt
Classification: Unclassified
currently I have setup dual monitors
when I execute an application with wine (ex. winecfg), it opens on the default
monitor, if I drag it to the other monitor, wine stops handling events, it
doesn't repaint it nor any keyboard/mouse events work (maybe it thinks its
minimized).
Notes:
My DE is xfce.
Native applications work well.
Other xrandr configurations and resolutions have the same problem.
--
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=30147
Bug #: 30147
Summary: mmdevapi: incorrect capture overrun handling
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mmdevapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
CC: m.b.lankhorst(a)gmail.com
Classification: Unclassified
Created attachment 39320
--> http://bugs.winehq.org/attachment.cgi?id=39320
mmdevapi capture test from native w7 machine
Most wineXYZ audio drivers do not handle mmdevapi capture overrun correctly. In
particular, the ALSA & OSS drivers randomly overwrite old with new data,
depending on the read pointer within the capture buffer.
Native roughly supports, with some quirks, a scenario like:
Initialize(duration=Xms);
Start;
Sleep(X+Yms); /* Y extra spare time */
Stop; /* optional, buffer is full now */
repeat GetBuffer/ReleaseBuffer until (hr != S_OK);
The goal is to obtain one buffer (~Xms) full of data.
The attached log from a w7 machine shows what packet gets recorded at what time
by tracing GetBuffer's performance counter output parameter (qpc). The key
data points are:
>capture.c:544: rate: 48000
>capture.c:293: GetBufferSize 23941 period size 480
>capture.c:248: Sleep.1 position 480 pad 16800 flags 0, frames locked: 480
>capture.c:250: sleep qpc=67335132
>capture.c:293: GetBufferSize 23941 period size 480
>capture.c:303: Overrun position 1440 pad 23941 flags 1, frames locked: 480
>capture.c:305: overrun qpc=67355139
This position and qpc jump of exactly one period I don't understand.
>capture.c:331: Cont'ed position 1920 pad 23461 flags 0, frames locked: 480
>capture.c:333: cont'ed qpc=67365133
>qpc=67375139 0 position 2400 pad 22981 flags 0, next 480, frames locked: 480
>qpc=67385135 1 position 2880 pad 22501 flags 0, next 480, frames locked: 480
Note how position correlates with 10ms increments of qpc (in µs).
>qpc=67795152 42 position 22560 pad 3301 flags 0, next 480, frames locked: 480
>qpc=67805153 43 position 23040 pad 2821 flags 0, next 480, frames locked: 480
>qpc=67815148 44 position 23520 pad 2341 flags 0, next 421, frames locked: 421
>qpc=67823919 45 position 23520 pad 1920 flags 0, next 59, frames locked: 59
>qpc=67825154 46 position 24000 pad 1861 flags 0, next 480, frames locked: 480
>qpc=67835147 47 position 24480 pad 1381 flags 1, next 421, frames locked: 421
>qpc=68085155 48 position 36480 pad 960 flags 1, next 480, frames locked: 480
>capture.c:352: Test failed: Valid IAudioCaptureClient_GetBuffer: 08890001
>qpc=68085155 49 position -1 pad 480 flags 1, next 0, frames locked: 0
qpc indicates that old packets are being delivered until iteration <48, where
another position jump occurs.
Summary:
- I don't know where native's 23941 frames buffer comes from.
It's neither a multiple of the period size nor of 1024.
- Upon underrun, a DISCONTINUITY is immediately signaled and one
packet is skipped. The latter is weird. (I'm wondering whether
native overwrites one packet within the circular buffer as an
overrun detector, then skips it?).
+ Then, almost a full buffer of old packets can be retrieved with
GetBuffer.
- While the full buffer is 49 * 480 + 421, only 48 * 480 + 421 frames
can be retrieved with a qpc indicating pre-overrun times.
- The last old packet is flagged with DISCONTINUITY too (iteration 47).
I'd have expected solely the following one to bear this mark.
+ When there's room again in the buffer, GetBuffer yields new packets
(iteration 48). Both position and qpc reflect the overrun gap that
appears to have last for 250ms. DISCONTINUITY is set too.
- There's some strange packet splitting at iterations 44-45 that may
correspond to a wrap-around of native's buffer.
I wonder why native does not limit buffer to multiples of period size.
- Note that the position 23520 of the 59 frames fragment rest is the
same as that of the previous 421 frames packet. A bug in native?
The qpc is different and looks ok.
+ GetNextPacket exactly matches the following GetBuffer, even when it
yields less than one packet, e.g. 421/59/480.
- GetCurrentPadding >= period size does not imply a successful GetBuffer,
see iteration 49. Only GetNextPacket correlates fine. A bug in native?
--
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=30110
Bug #: 30110
Summary: Mass effect steam
Product: Wine
Version: 1.4-rc6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Monoboy4ik(a)gmail.com
Classification: Unclassified
Game works fine but sometimes after 1-2 hours playing game freezes. No errors
in the console does not appear. Help please
--
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=29809
Bug #: 29809
Summary: Hype the Time Quest Installer Goes Over 100%
Product: Wine
Version: 1.3.16
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jthomas97411(a)yahoo.com
Classification: Unclassified
Wine 1.3.16 is as far back as I tested. For 1.3.16, 1.3.20, 1.4 rc 1, and 1.4
rc 2, if you uncheck the Microsoft DirectX Media check, this will allow the
installer to succeed, whereas if you don't uncheck that, it will fail.
When it fails (DirectX check left checked), it stops at about 100%. When it
succeeds (DirectX check unchecked), it goes to 116%, in the case of the
versions mentioned above.
There were some versions there for a while, somewhere not too far after 1.3.29,
that went to 117% when you didn't uncheck the DirectX test and they failed, and
when you did uncheck the DirectX test, the installer stopped at 100% and
succeeded. Whereas with these other versions it doesn't go over if you _don't_
uncheck it and does go over if you _do_ uncheck_ it. It still held true that
unchecking let it succeed and leaving it checked caused it to fail.
So this is a separate bug from the installer simply crashing.
Notice how this is different than the DirectX check bug: 29806. This is about
the installer going over 100%.
I get this 9 times in terminal from when the installer crashes in the case of
1.3.16, 1.3.20, 1.4 rc 1, and 1.4 rc 2:
fixme:advpack:ExecuteCabW Cab archive not extracted!
Jake
--
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=36480
Bug ID: 36480
Summary: Millenium Carillon Controller crashes on startup
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lithiumfun(a)me.com
Created attachment 48544
--> http://bugs.winehq.org/attachment.cgi?id=48544
Back Trace
The program gives the error "Unable to load DLL 'FTD2XX.DLL': Exception from
HRESULT 0x8007007E". Program is Millennium Controller by Chimemaster Systems.
Uses .NET v2.0.
--
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=35615
Bug ID: 35615
Summary: Robin Hood Legend of Sherwood: Missing UI elements and
invisible cursor in-game
Product: Wine
Version: 1.7.12
Hardware: x86
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: devilhood(a)gmail.com
Classification: Unclassified
During gameplay, parts of the UI are either invisible or black, and the mouse
cursor is partly invisible.
Windows 8 users can only play this game using WineD3D. Without WineD3D it lags
to an unplayable degree. No other fixes are available and support has been
abandoned for this title.
--
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=31055
Bug #: 31055
Summary: Sonic The Hedgehog 4 very slow on multicore cpu
Product: Wine
Version: 1.5.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: viny_viny304(a)hotmail.com
Classification: Unclassified
Sonic The Hedgehog 4 episode 1 and 2 is very slow on multicore cpus. Used
schedtool (to define the affinity. e.g. schedtool -a 0x1 -e wine ... ) the
performance improves considerably but still keeps a bit out of normal.
--
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=20232
Summary: mciwave breaks on MSDN example
Product: Wine
Version: 1.1.30
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
I'm reviewing mciwave and mciseq and found numerous issues. Concurrently, I'm
augmenting the MCI testsuite. I've attached my current mciwave
work-in-progress tests to give you an early insight into my work.
The tests so far confirm my model of MCI: I view it like an old-fashioned tape
deck with buttons, which you can press in any order. Still there's error
checking, e.g. you can't resume when stopped. Like a tape deck, you can switch
from playing to recording at any time.
Oddly, you can combine fast forward and play in one command, but not rewind
with play.
The attached tests work fine on (at least one machine with) MS-Windows, but
cause Wine to fail and hang in multiple ways. You've been warned!
I'd be pleased if people could run the tests on more instances of MS-Windows.
I plan to strip down this test file until it at least does not hang anymore in
Wine. Then only can it be submitted. Concurrently, I can submit patches to
the mci* codebase.
Current issues with the mci code in Wine are:
- not distinguishing between STOPPING and STOPPED, PLAYING and GOING TO PLAY,
etc.;
- seriously broken asynchronous execution;
- non-error-proof use of InterlockDecrement. It must only be called
when waveInAddBuffer and waveOutWrite succeed, as those cause
callbacks to happen;
- RIFF .wav file not always correctly written;
- the mmio is as much as resource as the wave device and must be
properly released (mmioAscend, not only when saving);
- many items here and there:
+ bogus 44000Hz frequency;
+ premature return (in mcicda);
+ conversion between #bytes and samples;
+ switching fInput while playing;
+ copy&paste errors (InterlockedDecrement need be initialised
differently when recording and playing)
The major issue is concurrency. There I'm not sure how to proceed and rewrite
mciwave (and mciseq and mcicda).
o One model, Erlang-like, which the OSS driver also implements, is one thread
per play and exclusively using message passing to receive commands. This would
simplify NOTIFY everywhere. It clearly offers the advantage of being closest
to the sequential execution model that is easy to reason about. IMHO, it does
not play nicely with the pause command (state machine).
o Continue as currently written, but then think twice and even 3-7 times about
how to perform locking among the concurrent threads:
- Put InterlockIncrement() to more uses?
- Put Events to more uses?
- Unlike mciavi, there's no CriticalSection in mciwave and mcicda, yet
I'm unconvinced that the current synchronisation via volatile dwStatus
can suffice.
- But then, identifying the critical sections will be tedious and error prone.
o Combinations of both, e.g. one thread per play or record (not unlike the
present code), and dealing (correctly) with PAUSE, STOP and RESUME inside it
(via e.g. events to restart a paused thread, or indirectly, by relying on the
callbacks+events sent when invoking waveOutRestart and waveInStart -- is it
legal at all to call those from a different thread)?
o Is there any other concurrency model suitable in Wine?
Regards,
Jörg Höhle
--
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=35823
Bug ID: 35823
Summary: Widl should check for duplicated uuids when generating
typelib
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: bunglehead(a)gmail.com
Duplicated uuids in a typelib will cause troubles with typeinfo lookup. Midl
refuses to generated such typelibs, but it looks like it might have a more
strict constraint - uuid should be unique in a file, and we don't want it to be
that strict (see bug 27718).
--
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=31232
Bug #: 31232
Summary: The Way Things Work 2.0 installer froze after finished
copying files
Product: Wine
Version: 1.1.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Nachanon_Vetjasit(a)hotmail.com
Classification: Unclassified
Regression SHA1: 54d7c8012d1d7369a56779955ced5a09e448a1cd
When started The Way Things Work 2.0 installer (setup.exe),
the setup proceeds normally, through the welcome screen,
quicktime installer prompt (though QuickTime 16bit 2.1.1 installation didn't
work [bug #18260]),
installation options (express/custom), files copying progress window.
But as soon as the file copying window disappeared, the installer froze, no
screen repainting, no message from WINE's console.
(Normally this stage should be creating program groups and ends at the 'Setup
Complete' window)
54d7c8012d1d7369a56779955ced5a09e448a1cd is first bad commit
commit 54d7c8012d1d7369a56779955ced5a09e448a1cd
Author: Dmitry Timoshkov <dmitry(a)codeweavers.com>
Date: Wed Apr 29 15:17:35 2009 +0900
explorer: Initialize the Progman DDE interface when starting explorer.
:040000 040000 4a347655bb6f41b8b8377d8e3e3e25c1551d1730
05513d15b76a99fe5033c4422a82008667425088 M programs
With WINE before this commit, the installation would continue, with WINE's
Program Manager (progman)
popped up with a dialog from the setup program: "Unable to start DDE
communication with Program Manager." [Abort/Retry/Ignore]
If clicked 'Ignore' (aka. continue despite the error), this step will be
repeated for another five time, each time leaving one Program Manager window
opened (6 window total at the end).
And finished with 'Setup Complete' window.
Note:
The Way Things Work is a 16-bit application, and supports Windows 3.1.
Tested using WINE's Windows version 98.
WINE: wine-1.1.21 source distribution
System: Debian GNU/Linux 5.0 "Lenny" i386 (Intel Pentium 4 2.66GHz)
--
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=36871
Bug ID: 36871
Summary: Chronology with native .NET is postage stamp sized
Product: Wine
Version: 1.7.21
Hardware: x86
URL: http://store.steampowered.com/app/269330/
OS: Linux
Status: NEW
Keywords: dotnet
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: madewokherd(a)gmail.com
This is with 'winetricks dotnet20' in a 32-bit prefix.
Chronology appears to run OK, except that it creates a large black window with
a tiny image in the upper-left corner. Maybe it's the title screen? It's too
small to be 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=35813
Bug ID: 35813
Summary: SolidWorks 2013: Crash at the beginning
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Created attachment 47811
--> http://bugs.winehq.org/attachment.cgi?id=47811
Crash window
Steps to reproduce:
1) remove ~/.wine
2) winetricks vcrun2010 dotnet40
3) install SolidWorks 2013
4) wine SLDWORKS.exe
Behaviour:
Crash (See attachment)
Expected behaviour:
No crash.
Additional info:
1) Window from attachment is "sldexitapp.exe"
2) "sldProcMon.exe" started by "SLDWORKS.exe" takes all CPU resources
--
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=35752
Bug ID: 35752
Summary: Autodesk Inventor LT: Setup crashes after winetricks
dotnet35sp1 dotnet40
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Created attachment 47744
--> http://bugs.winehq.org/attachment.cgi?id=47744
Crash window
Steps to reproduce:
1) remove ~/.wine
2) winetricks dotnet35sp1 dotnet40
3) wine Setup.exe
4) wait in initializing window
Behaviour:
Crash window (see attachment)
Expected behaviour:
No crash window.
Additional information:
There is no crash if I do not do step
"2) winetricks dotnet35sp1 dotnet40"
but these components are required to subsequent Inventor installation.
If I do only
"winetricks dotnet40"
then there is no crash too.
WINETRICKS_VERSION=20140302
--
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=35990
Bug ID: 35990
Summary: keyboard becomes unresponsive in blizzard games
Product: Wine
Version: 1.7.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kfirufk(a)gmail.com
Created attachment 48114
--> http://bugs.winehq.org/attachment.cgi?id=48114
Wow log file
I have encountered problems playing Diablo III and world of warcraft.
after a while of playing the keyboard becomes almost non responsive at all and
keys are being pressed randomly.
for now I created a log from wine for WoW, i'll create a log for diablo and
attach it later.
this log is from the start of the application till the problem started.
using gentoo linux ~amd64 with Nvidia GTX 680.
--
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=36936
Bug ID: 36936
Summary: Sibelius 6 omits required features during installation
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: fiona.m(a)gmx.net
The MSI database of Sibelius 6 contains several features of level 4 which are
not installed because the INSTALLLEVEL is fixed to 3. All of these features
have the msidbFeatureAttributesUIDisallowAbsent attribute set, which makes me
believe that it is supposed to override the level.
If these features are not installed the application fails to start with an
error message requesting reinstallation as Resources.dll is missing.
--
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=31283
Bug #: 31283
Summary: I Love Science! cannot detect it's CD
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Nachanon_Vetjasit(a)hotmail.com
Classification: Unclassified
Created attachment 41094
--> http://bugs.winehq.org/attachment.cgi?id=41094
WINE 1.5.6 +relay,+seh,+tid
When started DK's I Love Science (.wine/drive_c/Program Files/DK Multimedia/I
Love Science!/ilovesci.exe), instead of launch screen popping up,
an error message was displayed:
"Please put the I Love Science! CD in a CD drive"
[Retry][Quit]
Clicking "Retry" will make the dialog disappear, then it appeared back almost
instantly. Clicking "Quit" will simply close the program.
I Love Science's CD was mounted at drive D:
Tested with WINE's Windows version 98.
I Love Science! is a Win16 application and supports Windows 3.x.
WINE: wine-1.5.6 source distribution.
System: Debian GNU/Linux 5.0 "Lenny" i386 (Intel Pentium 4 2.66GHz)
--
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=31418
Bug #: 31418
Summary: IE HTTPS Fails
Product: Wine
Version: 1.5.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fredrick.ward(a)gmail.com
Classification: Unclassified
Attempted install of IE8 under ubuntu 12.04. Pages open, but secure pages will.
Attempted to use wininet and winhttp respectively and neither resolved the
issue. install of crypt32 gets rid of error but then page cannot load
--
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=36853
Bug ID: 36853
Summary: WINE should detect the presence of the window manager.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: carlo.bramix(a)libero.it
Created attachment 48943
--> http://bugs.winehq.org/attachment.cgi?id=48943
Screenshot, missing decorations.
In my private, ubuntu based, linux distribution, I installed the strict minimun
amount of packages, required for running just WINE and applications for Windows
with few megabytes.
I have not installed a window manager.
When running applications, it will happen that the decorations of the windows
won't be displayed if the window manager is enabled to draw or control them.
See the attached screenshot with winecfg running as an example.
The presence of the window manager should be detected and, if it is not
available, the two options for such purpose should be always grayed and the
function must be disabled automatically if it's enabled.
--
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=35699
Bug ID: 35699
Summary: the location to start drawing is failed in list
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
The list described in the attached file is rendered incorrectly.
(Maybe gdi mistaken point to start)
You cannot cause this without changing wine theme to
Light(http://aerilius.deviantart.com/art/Ubuntu-Light-Themes-12-10-32763197….
Thus,if you set it as no theme,it does not matter.
--
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=35696
Bug ID: 35696
Summary: [Japanese Font]Wine default fonts replacements for MS
fonts are not beautiful.
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: fonts
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
This is not enough to be called a bug.
However,many or almost all Japanese wine user complain that the Ume fonts are
not beautiful and download the MS Mincho font.
I think this is because wine does not use system font.
(such as Takao Mincho in Ubnutu,Hiragino in OSX).
--
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=14055
Summary: Occasional wine crash during Heroes of Might and Magic
III gameplay
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: riklaunim(a)gmail.com
Created an attachment (id=14275)
--> (http://bugs.winehq.org/attachment.cgi?id=14275)
Crash log
During gameplay the game may sometimes crash. It looks like the bug is related
to mp3/sound – “mp3dec.asi” (using OOS in wine). The log shows the
backtrace.
--
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=33975
Bug #: 33975
Summary: The Last Remnant stutters and stops rendering during
battles
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.blumenkrantz(a)gmail.com
Classification: Unclassified
During battle sequences, there is a graphical effect which causes a fullscreen
blur for the player to activate a quick-time event and press a button. During
these effects, the game's video freezes for some time before resuming; the
audio continues playing as normal for the duration.
It's likely that this occurs both in the demo and the full game.
I am willing and able to provide any debug output on demand.
--
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=15689
Summary: Onenote 2007: no drawing.
Product: Wine
Version: 1.1.6
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Crazedhamster(a)hotmail.com
Created an attachment (id=16752)
--> (http://bugs.winehq.org/attachment.cgi?id=16752)
Backtrace
Clicking on the drawing tool causes it to go grey and disappear.
--
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=12804
Summary: winecfg: pressing enter in library override closes
winecfg
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: jeffzaroyko(a)gmail.com
Pressing enter when entering a dll override doesn't add the override. For those
of us that find mice an exercise in masochism and prefer keyboards, it's quite
a pain...
--
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=20194
Summary: Far Cry 2: major graphical glitches
Product: Wine
Version: 1.1.30
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Created an attachment (id=23807)
--> (http://bugs.winehq.org/attachment.cgi?id=23807)
terminal output, first 5000 lines
The main menu loads, the level loading screen works fine. When starting a new
game, the screen is mostly black, part of the light from the sun is seen and
some other parts of the scenery creep into view for a moment here and there.
OpenGL renderer string: GeForce 8800 GTS/PCI/SSE2
OpenGL version string: 3.1.0 NVIDIA 190.18
--
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=30869
Bug #: 30869
Summary: Word 2010 UI uses wrong font size - leads to huge UI
elements
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
Classification: Unclassified
Whole Word UI including ribbon, window title and status bar is displayed with
huge font size, ribbon height is about 2 times larger than it should be.
Regression test shows that's a recently introduced problem from:
cca41207c161250d709ae3f8e0b002ac5c794de9 is the first bad commit
commit cca41207c161250d709ae3f8e0b002ac5c794de9
Author: Dmitry Timoshkov <dmitry(a)baikal.ru>
Date: Mon Jun 4 12:05:25 2012 +0900
gdi32: Fix parameters of some GDI stock fonts.
:040000 040000 78dfe59e027790bf6e171283d317c8214629312d
c1aee58caa05e216e80a12b4ecf15f799c715696 M dlls
--
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=26378
Summary: Can`t play a game
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danirtoma(a)gmail.com
J can`t play the game 4story.
--
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=36938
Bug ID: 36938
Summary: Couldn't launch Reason needed MFPlat.DLL and
MFReadWrite.dll library
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikhail.v.gavrilov(a)gmail.com
$ wine .wine/drive_c/Program\ Files/Propellerhead/Reason/Reason.exe
err:module:import_dll Library MFPlat.DLL (which is needed by
L"Z:\\home\\mikhail\\.wine\\drive_c\\Program
Files\\Propellerhead\\Reason\\Reason.exe") not found
err:module:import_dll Library MFReadWrite.dll (which is needed by
L"Z:\\home\\mikhail\\.wine\\drive_c\\Program
Files\\Propellerhead\\Reason\\Reason.exe") not found
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\home\\mikhail\\.wine\\drive_c\\Program
Files\\Propellerhead\\Reason\\Reason.exe" failed, status c000013
--
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=35105
Bug #: 35105
Summary: Ableton Live 9.1 crashes, probably because of
IFileDialog2
Product: Wine
Version: 1.7.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bique.alexandre(a)gmail.com
Classification: Unclassified
Created attachment 46825
--> http://bugs.winehq.org/attachment.cgi?id=46825
Log of the IFileDialog usage
When setting wine to >=Vista, Ableton Live 9.1 do not use GetOpenFile() anymore
but IFileDialog according to Microsoft recommendations.
With the GetOpenFile() code path, Ableton does not crash. But with the
IFileDialog code path Ableton does crash. I believe that wine's implementation
has different result values than the Windows one and that would explain why
Ableton crashes.
--
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=29380
Bug #: 29380
Summary: sonic Generations: The detected configuration does not
match your current hardware
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eunbolt(a)gmail.com
Classification: Unclassified
Created attachment 38027
--> http://bugs.winehq.org/attachment.cgi?id=38027
Terminal output when starting Sonic Generations
First you Select what hardware you have in the sonic generations configuration
tool.
Then when you run sonic generations, it tells you "The detected configuration
does not match your current hardware"
--
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=36589
Bug ID: 36589
Summary: valgrind shows uninitialized memory use in
usp10/tests/usp10.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: usp10
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==25656== Invalid read of size 2
==25656== at 0x4E326DE: _ItemizeInternal (usp10.c:1486)
==25656== by 0x4E33398: ScriptItemizeOpenType (usp10.c:1658)
==25656== by 0x4CB50D3: _test_items_ok (usp10.c:77)
==25656== by 0x4CB832D: test_ScriptItemize (usp10.c:596)
==25656== by 0x4CC7B59: func_usp10 (usp10.c:3201)
==25656== by 0x4CC8A3E: run_test (test.h:584)
==25656== by 0x4CC8E2C: main (test.h:654)
==25656== Address 0x49c46c0 is 0 bytes after a recently re-allocated block of
size 8 alloc'd
==25656== at 0x7BC4C6DF: notify_alloc (heap.c:255)
==25656== by 0x7BC50F23: RtlAllocateHeap (heap.c:1716)
==25656== by 0x4E306B6: heap_alloc_zero (usp10.c:719)
==25656== by 0x4E320D6: _ItemizeInternal (usp10.c:1375)
==25656== by 0x4E33398: ScriptItemizeOpenType (usp10.c:1658)
==25656== by 0x4CB50D3: _test_items_ok (usp10.c:77)
==25656== by 0x4CB832D: test_ScriptItemize (usp10.c:596)
==25656== by 0x4CC7B59: func_usp10 (usp10.c:3201)
==25656== by 0x4CC8A3E: run_test (test.h:584)
==25656== by 0x4CC8E2C: main (test.h:654)
==25656==
--
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=29880
Bug #: 29880
Summary: Sonic Generations: no audio
Product: Wine
Version: 1.4-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eunbolt(a)gmail.com
Classification: Unclassified
Created attachment 38852
--> http://bugs.winehq.org/attachment.cgi?id=38852
Terminal output while playing sonic generations
There is no sound when playing sonic generations
--
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=22978
Summary: SimCity2000: race condition causes crash in MCI during
startup
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Created an attachment (id=28457)
--> (http://bugs.winehq.org/attachment.cgi?id=28457)
mci+winmm trace & crash backtrace
The attached log shows a crash that is triggered because the asynchronous
mciseq/mcimidi player is still attempting to open the device while the main
thread already successfully called MCI_CLOSE.
The mcimidi player does not implement proper locking. Unlike mciwave, its state
variable is not yet set to MCI_MODE_PLAY when opening the MIDI device, which
lets MCI_CLOSE not see something is busy playing.
Actually, even looking at mciwave, one can construct unfortunate sequences of
scheduling that would cause mciwave to hang in such a situation. So there's no
trivial patch simply moving
wmm->dwStatus = MCI_MODE_PLAY;
a couple of lines up.
The crash generally occurs when starting SimCity 2000 using
"wine 'C:\Program...\Game\simcity.exe'"
Curiously, "wine start simcity.exe" always works. As I said, it's a race
condition.
It seems like sometimes, the initialisation of WINMM and MIDI takes a long
time.
The bug is then triggered when MCI_CLOSE is called by the application.
MCI_CLOSE is called, among others, when clicking "exit" in the initial menu.
Often enough, the app crashes before showing this menu. IMHO, the fact that the
app calls MCI_CLOSE that early is triggered by another bug in Wine that AppDB
testers have mentioned every now and often, but never put to Bugzilla: SimCity
2000 starts fine (showing its logo) when using full screen mode, but needs a
resize or uniconify when using a virtual desktop: then presumably, the app
sends MCI_CLOSE to stop the music, causing or not a crash via the present race
condition.
BTW, since the crash occurs in the asynchronous MCI MIDI player, the app
nevertheless works...
This issue has nothing to do with the bug, presumably in the app, that "wine
simcity.exe" crashes whereas "wine 'c:\full\path\simcity.exe'" (should) work.
--
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=36498
Bug ID: 36498
Summary: Project64: about page is black
Product: Wine
Version: 1.5.9
Hardware: x86
URL: http://www.pj64-emu.com/downloads/func-startdown/34/
OS: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: jacek(a)codeweavers.com
Follow up to bug 31332. Now there's not an IE window popup, but the page is
black.
wine-1.7.19-47-g704d169
--
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=30170
Bug #: 30170
Summary: Afterburner 3D: screen not drawn properly (orm=fbo)
Product: Wine
Version: 1.4
Platform: x86
URL: http://digilander.iol.it/brodarodasoft2/AB3D_Setup.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 39373
--> http://bugs.winehq.org/attachment.cgi?id=39373
terminal output (orm=fbo)
Now that bug #8433 has been fixed, the game can get past the initial loading
screen without crashing, but the screen is not refreshing after the loading
screen is displayed. You can hear audio playing and various text is displayed
(overwritten) on the loading screen.
At some point menu options appear at the bottom of the screen and you can start
a new game by pressing <Enter>. You can hear audio from the game but the screen
is still showing the corrupted loading screen.
Setting OffscreenRenderingMode to backbuffer acts as a workaround. One of the
drawbacks of this setting is that the opening screens showing the graphic card
and input setup are displayed upside down. Once the game begins to load, the
screen is displayed normally.
Performance is abysmal when you start a new game but I don't know if this is
due to the backbuffer setting.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.4
--
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=36875
Bug ID: 36875
Summary: Incorrect check in PlayEnhMetaFileRecord() with case
== EMR_SCALEWINDOWEXTEX
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: maksqwe1(a)ukr.net
enhmetafile.c 1419
if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->yDenom) // <===
break;
--
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=29017
Bug #: 29017
Summary: 4th Dimension 6.5.4 crashes
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastien.ramage(a)gmail.com
Classification: Unclassified
The app. crashes when trying to start "tools => Explorer" or in french "Outils
=> Explorateur'
wine reports : err:seh:raise_exception Exception frame is not in stack limits
=> unable to dispatch exception.
the app and a sample database can be download here :
http://www.janin-tools.com/download/wine/4th_Dimension_6.5.4.tar.gz
to reproduce the bug :
- download the archive and uncompress it
- launch 4D.exe
- choose "Démo" on the welcome dialog
- choose "Ouvrir une base existante" and select the test database (click on
"Autre..." if necessary)
- When database opened, choose "Outils" then "Explorateur" in the menu bar.
--
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=32527
Bug #: 32527
Summary: No Navigation in panel / Heredis 9
Product: Wine-gecko
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: lebon.sylvain(a)gmail.com
Classification: Unclassified
The information panel in Heredis shows information about people. It should be
updated when another person is selected. It is not. Instead, a line is shown in
console:
fixme:ieframe:navigate_url Unsupported args (Flags 0x33f3c4:10; TargetFrameName
0x33f3b4:10)
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 67 of
CGID_ShellDocView
This happens with all wine versions up to 1.5.19.
It can be reproduced using Heredis 13 demo version found here:
http://www.heredis.com/en/heredis-pc/download-trial-pc/
--
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=9848
Summary: flipviewer fails to load
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eyecreate(a)gmail.com
Created an attachment (id=8321)
--> (http://bugs.winehq.org/attachment.cgi?id=8321)
Error log for flipviewer
The flipviewer(www.flipviewer.com) app installs and the library program works,
but the actual program fails. Backtrace log attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=36300
Bug ID: 36300
Summary: valgrind shows an invalid read in
msxml3/tests/saxreader.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==30812== Invalid read of size 1
==30812== at 0x61B1797: update_position (saxreader.c:698)
==30812== by 0x61B43E1: libxmlStartElementNS (saxreader.c:1600)
==30812== by 0x648AAA5: ??? (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x648F5B0: xmlParseElement (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x648FC41: xmlParseDocument (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x61B6D79: internal_parseBuffer (saxreader.c:2552)
==30812== by 0x61B7193: internal_parse (saxreader.c:2637)
==30812== by 0x61B94B0: isaxxmlreader_parse (saxreader.c:3395)
==30812== by 0x4A7EEC3: test_saxreader (msxml2.h:18632)
==30812== by 0x4A963FA: func_saxreader (saxreader.c:5592)
==30812== by 0x4AAC96C: run_test (test.h:584)
==30812== by 0x4AACD5B: main (test.h:654)
==30812== Address 0x4550ef7 is 1 bytes before a block of size 4,096 alloc'd
==30812== at 0x4006B11: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==30812== by 0x64F5E6D: xmlBufCreate (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x6477115: ??? (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x64786F2: xmlSwitchEncoding (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x648FF25: xmlParseDocument (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x61B6D79: internal_parseBuffer (saxreader.c:2552)
==30812== by 0x61B7193: internal_parse (saxreader.c:2637)
==30812== by 0x61B94B0: isaxxmlreader_parse (saxreader.c:3395)
==30812== by 0x4A7EEC3: test_saxreader (msxml2.h:18632)
==30812== by 0x4A963FA: func_saxreader (saxreader.c:5592)
==30812== by 0x4AAC96C: run_test (test.h:584)
==30812== by 0x4AACD5B: main (test.h:654)
==30812==
--
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=28186
Summary: uninstaller has no proper usage message
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
First uninstaller uses WINE_ERR() to tell the user he got the usage wrong (like
when he forgets a parameter). That's wrong as this is not a Wine error.
Second it never prints a usage message thus leaving the user guessing.
Finally if run in the wineconsole the user will see no output at all but that's
a somewhat independent issue (see bug 28185).
--
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=32213
Bug #: 32213
Summary: Tales of Pirates II Randomly Closes out.
Product: WineHQ Bugzilla
Version: unspecified
Platform: x86-64
URL: http://top2.igg.com/download/client.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: SolisX007(a)yahoo.com
Classification: Unclassified
Created attachment 42487
--> http://bugs.winehq.org/attachment.cgi?id=42487
TalesofPiratesII
Tales of Pirates II Randomly Closes out on wine-1.5.17.
--
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=14915
Summary: FlushFileBuffers() fails on disk volume, sets
ERROR_INVALID_HANDLE when handle supposedly valid
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vesselinpeev(a)hotmail.com
Ran under Wine, the following program receives ERROR_INVALID_HANDLE as a
Windows last error when the flushing call fails.
Note that if you are testing under Windows Vista, you need to run the program
with administrative privileges to be able to get the handle to the volume.
For brevity, I've omitted GetLastError() printing for failure cases except the
flushing one, but, needless to say, you may want to add them for full
correctness / error handling / safety, or do let me know and I'll happily add
these and re-post the code.
# include <windows.h>
# include <stdio.h>
# include <tchar.h>
int _tmain()
{
LPCTSTR volName = _T("\\\\.\\C:");
HANDLE hFile = CreateFile(volName, GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, 0,
OPEN_EXISTING, 0, 0);
if (hFile != INVALID_HANDLE_VALUE) {
_tprintf(_T("Opened volume %s\n"), volName);
SetLastError(0xdeadbeef); /* to make sure that it's really the next call
that sets the last error -- advice taken from Dmitry Timoshkov's comment at
http://bugs.winehq.org/show_bug.cgi?id=14855 */
if (FlushFileBuffers(hFile)) {
_tprintf(_T("File buffers flushed\n"));
}
else {
DWORD dwRet = GetLastError();
_ftprintf(stderr, _T("File buffers not flushed, GetLastError() returned
%lu"), dwRet);
if(dwRet == ERROR_INVALID_HANDLE) {
_ftprintf(stderr, _T(" (\"The handle is invalid\")"));
}
_ftprintf(stderr, ".\n");
}
}
else {
_ftprintf(stderr, _T("Could not open volume %s\n"), volName);
return -2;
}
if(! CloseHandle(hFile)) {
_ftprintf(stderr, _T("Could not close handle to volume %s\n"), volName);
return -3;
}
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=19425
Summary: notepad: running notepad with a non-existent file and
choosing yes to create a new file should do so
immediately (appinstall)
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: trivial
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
'notepad foobar.txt'
pops up a dialog telling you that the file does not exist, and asking if you'd
like to create it.
Yes - Opens notepad with foobar.txt, but doesn't create a new file.
No - Opens notepad with a blank new document.
Cancel - Closes notepad.
On windows, choosing yes immediately creates the new (empty) file.
--
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=34244
Bug #: 34244
Summary: DARK (2013) doesn't launches without native quartz
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45569
--> http://bugs.winehq.org/attachment.cgi?id=45569
log
Needs native quartz.
--
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=28770
Bug #: 28770
Summary: Diablo 2 - sound works in menu, stops after starting
game (kind of regression)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zajec5(a)gmail.com
Classification: Unclassified
I've noticed that with recent Wine I don't hear any sound in Diablo 2 when
playing my character. When I start Game.exe - sound is here during watching
into and as long as I'm in the menu. When I start playing (the map and my
character show up) it stops. After that I don't hear anything anymore.
Bisection has resulted in the following:
There are only 'skip'ped commits left to test.
The first bad commit could be any of:
901af51ea32f2d192a598808abab2d1b6a940773
be158e48ad8ee556941bd3f1ff94ca7116680d00
We cannot bisect more!
commit be158e48ad8ee556941bd3f1ff94ca7116680d00
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Mon Jul 11 08:28:30 2011 -0500
winmm: Implement waveOut* on top of MMDevAPI.
commit 901af51ea32f2d192a598808abab2d1b6a940773
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Mon Jul 11 08:28:24 2011 -0500
winmm: Remove driver implementation of waveOut*.
I'm using ALSA in Wine and Pulseaudio in my system.
I'm almost sure it's duplicate of #27908, but I was asked by Austin to create
new bugzilla report.
Right after starting Game.exe with affected Wine I get following fixmes:
fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels
fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels
When starting real game (map and character, sounds goes away) nothing appears
in the console.
--
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.