http://bugs.winehq.org/show_bug.cgi?id=11601
Summary: wine crash on DriveHQ app exit
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: justice8(a)wanadoo.fr
Created an attachment (id=10805)
--> (http://bugs.winehq.org/attachment.cgi?id=10805)
wine backtrace
Just when app quit, wine crash, I put last err messages just in case it help.
--
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=9669
Summary: In "Tag&Rename", splash screen invisible
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.softpointer.com/tr.htm
OS/Version: other
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The splash screen of the app doesn't work. All
I can see is a little bit of an outline. It's too
transparant, or something.
(I was originally trying to reproduce a bug reported here
http://groups.google.com/group/comp.emulators.ms-windows.wine/msg/e2a32181a…
but that seemed fine, so I'm just reporting the splash screen problem.)
--
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=14087
Summary: Shell32.dll needs new icons
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bammzilla(a)gabriana.com
Hi,
Where can I find the guidelines for designing and/or contributing icons for
Wine, particularly for shell32? Since I know very little C/C++ this might be
one area where I can contribute.
I would have suggested this before, but I knew that everyone's busy getting the
basics done in time for Wine 1.0, and of course, functionality and bug fixes is
understandably more important than artwork. Now that a stable version has been
released, I think this might be a good time to work on the look and feel.
Regards,
Bamm
--
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=10892
Summary: Unable to refocus after opening url link in Warcraft III
[The Frozen Throne]
Product: Wine
Version: 0.9.51.
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=version
&iId=3126
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: wine-shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugzilla(a)gmail.com
Created an attachment (id=9796)
--> (http://bugs.winehq.org/attachment.cgi?id=9796)
The oblong next to the firefox icon is warcraft 3x selected
Unable to refocus after opening url link in warcraft III [The Frozen Throne].
Battle.net > login > profile > view web profile.
It opens click on the Warcraft 3x tab and you see [warcraft3x_focus_loss],
after 25 minutes or so we get [error_war3x].
You can never refocus the game, the only way to stop is killing it.
This bug is in version 0.9.41, 0.9.51 and probably in the versions between.
--
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=12888
Summary: Settlers VI: Requires administrator privileges
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tdb(a)tdb.fi
When trying to start Settlers VI: Rise of an Empire, I am greeted with a
message box saying "Insufficient privileges: you must be administrator when you
run this application for the first time." I am not quite sure how it checks
for having those, it appears to communicate with a driver related to the Tages
copyprotection just before presenting this error.
The game version is 1.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=10179
Summary: Heap corruption in tiny example program
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Severity: enhancement
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
The call to GlobalHandle in the following program causes the warning
warn:heap:HEAP_ValidateInUseArena Heap 0x110000: invalid in-use arena magic for
0x110810
To reproduce, copy the following program to dlls/kernel32/tests/bug.c
and compile with
../../../tools/winegcc/winegcc -B../../../tools/winebuild -mconsole
-I../../../include bug.c ../../../libs/port/libwine_port.a -ladvapi32
-lkernel32
then run with
WINEDEBUG=warn+heap ./a.out
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winerror.h>
#include <assert.h>
int main(int argc, char **argv)
{
HGLOBAL hmem,hmem2;
UCHAR *pmem;
SetLastError(NO_ERROR);
hmem=GlobalAlloc(0, 1);
assert(hmem != NULL);
hmem=GlobalReAlloc(hmem,0,GMEM_MODIFY | GMEM_MOVEABLE);
pmem=GlobalLock(hmem);
hmem2=GlobalHandle(pmem); // Here's the line that causes the warning
assert(hmem2==hmem);
assert(pmem!=NULL && !GlobalUnlock(hmem) && GetLastError()==NO_ERROR);
assert(!GlobalFree(hmem));
assert(HeapValidate(GetProcessHeap(), 0, 0));
return 0;
}
This was boiled down from alloc.c (which has a similar warning).
--
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=14496
Summary: NVIDIA Dusk Demo Fails to run
Product: Wine
Version: 1.1.1
Platform: PC
URL: http://www.nzone.com/object/nzone_duskdemo_home.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cwadge(a)gmail.com
Created an attachment (id=14821)
--> (http://bugs.winehq.org/attachment.cgi?id=14821)
Verbose debugging
The NVIDIA "Dusk" graphical demo crashes on execution with the following error:
wine: Unhandled page fault on read access to 0x00000044 at address 0x40a529
(thread 0009), starting debugger...
More verbose debugging attached.
--
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=10034
Summary: SPSS 15: missing disk ID for authorization
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jiu-d97c(a)myamail.com
Created an attachment (id=8572)
--> (http://bugs.winehq.org/attachment.cgi?id=8572)
Log of the session
In SPSS 15, you must activate your license using a licence authorization wizard
(from help menu). When I select "I obtained a license from SPSS" and click
"Next", there is an error message with code 30200 (from SPSS) saying that disk
ID is missing.
Nothing seems to happen in the Log (included below).
Using Wine 0.9.46 in Ubuntu 7.04 and the French version of SPSS 15.
--
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=10512
Summary: Project Visitor: Installs OK but crashes when run
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://projectvisitor.com/site/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wilcox.kyle(a)gmail.com
Created an attachment (id=9258)
--> (http://bugs.winehq.org/attachment.cgi?id=9258)
Command line error log from running ProjectVisitor
Project Visitor crashes when trying to run the program through Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=14610
Summary: Stata crashes when trying to start help (window)
Product: Wine
Version: 1.0.0
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sm666(a)gmx.at
CC: julliard(a)winehq.org
Created an attachment (id=15003)
--> (http://bugs.winehq.org/attachment.cgi?id=15003)
text file with git output of "first bad commit"
in Stata (Program for Statistical Regressions) one types "help" to get an
additional window (no standard help!); the whole application crashes when
typing help (worked in earlier versions).
First bad commit in ATTACHMENT
--
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.