http://bugs.winehq.org/show_bug.cgi?id=26954
Summary: DigitalSpace Traveler crashes after selecting avatar
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mscdex(a)sbcglobal.net
Created an attachment (id=34385)
--> (http://bugs.winehq.org/attachment.cgi?id=34385)
standard wine 1.3.18 log
The last time I tried DigitalSpace Traveler (2.03) was with wine 1.3.6, where
it was still working. However, after a report on the software's appdb page and
me trying with wine 1.3.18, it seems the app is broken after 1.3.6.
The program crashes after selecting an avatar (about the time it attempts to
download information from a remote http server). Any program interaction prior
to selecting an avatar works just fine (changing profile information, etc).
I've attached the console output from wine 1.3.18. If there is a specific
WINEDEBUG setting I should use that would provide more helpful output for this
problem, let me know and I'll attach another log.
--
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=27159
Summary: Wine doesn't recognise the NVIDIA GT 540M card
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rockorequin(a)hotmail.com
Created an attachment (id=34690)
--> (http://bugs.winehq.org/attachment.cgi?id=34690)
patch to recognise nvidia GT540M card
Wine doesn't recognise the NVIDIA GT 540M card.
lspci shows for the card:
01:00.0 VGA compatible controller: nVidia Corporation Device 0df4 (rev a1)
AFAIK the card can come with 1GB or 2GB of RAM.
The attached patch adds the card and assumes it has 1GB RAM. It works in
Crysis2, ie Crysis2 tells me that it is an unsupported card but gives the
correct details now instead of defaulting to the 8300GS.
--
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=27252
Summary: Aliwangwang serious error after login
Product: Wine
Version: 1.3.20
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Created an attachment (id=34846)
--> (http://bugs.winehq.org/attachment.cgi?id=34846)
Log: login to wangwang
1. Download installer of AliWangWang :
http://download.taobaocdn.com/wangwang/AliIM2011_taobao(6.50.27T).exe
( from http://www.taobao.com/wangwang/2010_fp/seller.php )
2. install with wine:
$ LANG=zh_CN.utf8 wine AliIM2011_taobao(6.50.27T).exe
(not sure whether bug 10063 is harmful)
3. import a reg file with regedit, works around Bug 27196 ( dup of bug 25340)
see attachment : clsidall.reg
4. override gdiplus, works around Bug 27251
5. Start wangwang:
$ wine WangWang.exe
6. login to WangWang
After login a while , an error message with log file appear, it says wangwang
has to close.
--
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=22705
Summary: Coffeecup HTML editor 2010 retail - unable to start
program
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kimiskov(a)yahoo.dk
I got a problem.
After installing Coffeecup HTML editor 2010 (pay version) Coofee.exe will not
start.
I got this message:
Program Error
The program Coffee.exe has encountered a serious problem and needs to close. We
are sorry for the inconvenience.
NB. The program is to download as full working 30 days trial at
http://www.coffeecup.com
Kim Iskov
--
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=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=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.