http://bugs.winehq.org/show_bug.cgi?id=28693
Bug #: 28693
Summary: Old version Bass.dll fails to load
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jiashulu(a)gmail.com
Classification: Unclassified
I have trouble playing an old game which uses the audio library Bass.dll.
After typing "wine rpg.exe", nothing happens for a while and then an error
occurs:
err:ntdll:RtlpWaitForCriticalSection section 0x7efec904
"/var/tmp/portage/app-emulation/wine-9999/work/wine-9999/dlls/ntdll/loader.c:
loader_section" wait timed out in thread 0028, blocked by 0009, retrying (60
sec)
It seems that Bass.dll calls to DirectSoundEnumerate in its Dllmain and
something goes wrong.
An old version of Bass.dll can be downloaded from its homepage:
http://www.un4seen.com/download.php?bass08
There are also some test programs for Bass.dll in the package above. They all
fail to start under wine but work all right under windows.
--
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=28023
Summary: CoreAudio queue memory leak
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mmdevapi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
CC: aeikum(a)codeweavers.com
While working on a patch to fix the Get/ReleaseBuffer ordering, see bug #27184
comment #3, I found a bug in memory management in winecoreaudio's mmdevapi.
510 HeapFree(GetProcessHeap(), 0, This->public_buffer);
but public_buffer originates from
1625 sc = AudioQueueAllocateBuffer(This->aqueue, bytes,
1626 &This->public_buffer);
The APIs don't match. It currently doesn't crash because
public_buffer is NULL upon regular exit. This matches:
1634 AudioQueueFreeBuffer(This->aqueue, This->public_buffer);
That would be easy to fix, but it leads to question how AudioClient_Release
frees the buffer queue.
502 if(This->aqueue)
503 AudioQueueDispose(This->aqueue, 1);
I suppose that Dispose gets rid of all the MacOS-level elements left in the
queue, but I doubt it can handle the additional AQBuffer that Wine links to
every object via the mUserData slot.
1632 buf = HeapAlloc(GetProcessHeap(), 0, sizeof(AQBuffer));
1640 This->public_buffer->mUserData = buf;
Therefore I believe Wine must iterate through the list (aqueue or
avail_buffers?) and free remaining objects one by one.
As I'm not familiar with the MacOS API's, I'd like somebody knowledgeable
(Andrew, Ken?), to check this issue and write the patch.
BTW, I believe that correct freeing should first return
This->public_buffer into the queue -- where it originated -- like I did in my
ordering patch, then delete the whole queue.
+ if(This->public_buffer){
+ AQBuffer *buf = This->public_buffer->mUserData;
+ list_add_tail(&This->avail_buffers, &buf->entry);
+ This->public_buffer = NULL;
+ }
--
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=19510
Summary: UHA SFX file can't decompress
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vladimiroski(a)gmail.com
I got a UHA SFX.
The first thing to notice is that the SFX starts fine, the file checksum pass.
But after you choose the directory to extract the files then application get
graphical corrupted. You're still able to press "Extract" button, but it does
nothing.
Still you can uncompress the SFX in this way:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=4003&iTestingI…
$wineconsole cmd
$uharc.exe e uha-sfx-file.exe
(decompress nicely)
There's no console output when running the SFX, so I don't know what WINEDEBUG
channels would be appropriated to use in this 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=29366
Bug #: 29366
Summary: GTAIV native trainer doesn't catch some key presses
Product: Wine
Version: 1.3.35
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
CC: julliard(a)winehq.org
Classification: Unclassified
Regression SHA1: cb3b7237925a24ba4c5696dd079fdc5d99a48577
Before this regression, keys like =_;] <ctrl>+F1 F3 and some others worked with
GTAIV Native Trainer. After it, neither of =_;] work. Only Ctrl+F1 and F3 of
this set do.
So, results of regression testing:
cb3b7237925a24ba4c5696dd079fdc5d99a48577 is the first bad commit
commit cb3b7237925a24ba4c5696dd079fdc5d99a48577
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Dec 15 14:30:41 2011 +0100
user32: Cache the global key state to avoid performance issues in
applications that poll constantly.
:040000 040000 6fc9980517e631c9e7145313c1634713a36b11f4
dbc782b9be4295845ba663e5830b8114a67b290c 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=25360
Summary: Word viewer crashes when going online for help
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gQuigs(a)gMail.com
Created an attachment (id=32255)
--> (http://bugs.winehq.org/attachment.cgi?id=32255)
Startup and Backtrace
Word Viewer 2007 crashes when you click for help. It used to just link to the
MS website for help. This is a regression..
Traced to:
a3aa115ac3bbbc3c1d2156448d5e11057cbb25dc is the first bad commit
commit a3aa115ac3bbbc3c1d2156448d5e11057cbb25dc
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Wed Oct 6 21:36:18 2010 +0200
urlmon: Use default binding callback if no callback is provided.
:040000 040000 abf2d05f08ce9225acf50d36edcb1bca272e3a19
bc11697b220653d38f05fa8cb2911fa54daf4eb7 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=22328
Summary: I get the same error with every game I download with
wine.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lolypopgirlxoxo(a)gmail.com
I get the same error whenever I try to play a game using wine. It says that the
program encountered a serious problem and needs to close. It has done this with
every single game I try. Including World of Warcraft, Sims 2, and Genforge 5.
Please tell me what I need to do.
---
lolypopgirlxoxo(a)gmail.com
--
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=29281
Bug #: 29281
Summary: Input problem in Skyrim
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: fernandocarvalhocoelho(a)gmail.com
Classification: Unclassified
Created attachment 37872
--> http://bugs.winehq.org/attachment.cgi?id=37872
This is the terminal output for the game - wine-1.3.34
When I'm playing Skyrim, the Avatar walks alone.
--
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=24760
Summary: FIFA 11: doesn't run throwing an error on
fifasetup.exe
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: luca76(a)gmail.com
FIFA 11: doesn't run throwing an error on fifasetup.exe
This only on wine 1.3.5.
On wine 1.3.4 and before it worked flawlessy.
--
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=20564
Summary: day of defeat source : CFIleSystem_Steam::Init()
failed : failed to find steam....
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jetboo(a)gmail.com
Created an attachment (id=24526)
--> (http://bugs.winehq.org/attachment.cgi?id=24526)
console output when i try to lunch dod:s from steam interface
Hi, hi, each time i launch dod source from steam i got
CFIleSystem_Steam::Init() failed : failed to find steam interface
i am running on wine-1.1.32 with clean prefixe
how to fix this ?
i attached the terminal output
--
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=17651
Summary: Haufe SteuerOffice: Installer crashes
Product: Wine
Version: 1.1.16
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: koesterreich(a)gmx.net
Created an attachment (id=19837)
--> (http://bugs.winehq.org/attachment.cgi?id=19837)
log file
Haufe SteuerOffice is a information database for the German tax law.
The Installer pops up for some seconds, than wine crashes.
Appending bzipped log, created using WINEDEBUG=+relay,+seh,+tid,+msgbox.
--
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.