http://bugs.winehq.org/show_bug.cgi?id=25458
Summary: Saints Row 2 crashes when entering game.
Product: Wine
Version: 1.3.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: superppl(a)gmail.com
The game Saints Row 2 crashes when attempting to enter a game. Launching the
game and navigating the menu appears to work fine.
--
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=34046
Bug #: 34046
Summary: GUIMiner crashes when trying to start mining.
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: keithclark1966(a)gmail.com
Classification: Unclassified
Created attachment 45248
--> http://bugs.winehq.org/attachment.cgi?id=45248
Program Error Details window contents
GUIMiner starts up fine but after entering the account data and trying to start
to mine, the program 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=35847
Bug ID: 35847
Summary: wined3d does not recognize cards newer than GTX 770
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: rmlipman(a)gmail.com
Created attachment 47861
--> http://bugs.winehq.org/attachment.cgi?id=47861
patch for 780 ti
I have a partial patch that adds for GTX 780 Ti
To make this more complete, support for GTX 780, Titan, and Titan Black should
also be added. Bug 32694 also references GTX 690 so there may be even more that
aren't accounted for.
Information can be found at
select_card_nvidia_mesa (NV## codenames)-
http://nouveau.freedesktop.org/wiki/CodeNames/
This is the search I used to get the device ID for my card (wined3d_private.h)-
http://www.techpowerup.com/vgabios/index.php?architecture=NVIDIA&manufactur…
--
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=17524
Summary: k-meleon crash on startup (Unhandled page fault)
Product: Wine
Version: 1.1.15
Platform: PC
URL: http://kmeleon.sourceforge.net/download.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)gringer.org
Created an attachment (id=19632)
--> (http://bugs.winehq.org/attachment.cgi?id=19632)
Crash on starting of program
Using the non-installer version of k-meleon, the program crashes on startup.
Steps to reproduce:
1) Download K-Meleon1.5.2en-US.7z from website
(http://kmeleon.sourceforge.net/download.php), and unzip into some directory:
~/install/kmeleon/program$ 7z x K-Meleon1.5.2en-US.7z
2) Dowload installer version (K-Meleon1.5.2en-US.exe) from website, and extract
msvcp71.dll and msvcr71.dll files:
~/install/kmeleon/program$ 7z x ~/install/wine/K-Meleon1.5.2en-US.exe ms*.dll
3) Run k-meleon.exe and observe crash
This follows the portable workflow mentioned on the kmeleon wiki:
http://kmeleon.sourceforge.net/wiki/KMPortable
What should happen:
3) k-meleon doesn't crash.
A log of the crash has been 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.
https://bugs.winehq.org/show_bug.cgi?id=37128
Bug ID: 37128
Summary: Clang Static Analyzer: Uninitialized variable in a
condition
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies Uninitialized variable in a condition
File: dlls/atl110/../atl/atl_ax.c
Location: line 1092, column 10
Description: Branch condition evaluates to a garbage value
HRESULT
WINAPI AtlAxCreateControlEx(LPCOLESTR lpszName, HWND hWnd,
IStream *pStream, IUnknown **ppUnkContainer,
IUnknown **ppUnkControl, REFIID iidSink, IUnknown *punkSink)
{
...
IUnknown *pContainer;
...
hRes = AtlAxAttachControl( pUnkControl, hWnd, &pContainer );
if ( FAILED( hRes ) )
WARN("cannot attach control to window\n");
...
if ( pContainer ) //<==
//Clang: Branch condition evaluates to a garbage value
IUnknown_Release( pContainer );
return S_OK;
}
The uninitialized variable pContainer is used in the condition after the call
of AtlAxAttachControl. This function's description is given below.
HRESULT
WINAPI AtlAxAttachControl(IUnknown *control, HWND hWnd,
IUnknown **container)
{
HRESULT hr;
...
if (!control)
return E_INVALIDARG;//<==
hr = IOCS_Create( hWnd, control, container );
return hWnd ? hr : S_FALSE;
}
In this code, the E_INVALIDARG value may be returned before initializing the
container variable. It will result in the AtlAxCreateControlEx function
generating the warning and going on to work with the uninitialized variable.
--
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=25557
Summary: menus are misplaced in simulation mode of PALturn+
Product: Wine
Version: 1.1.39
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: atalanttore(a)googlemail.com
Created an attachment (id=32540)
--> (http://bugs.winehq.org/attachment.cgi?id=32540)
Screenshot during simulation mode
See AppDB ID:22266
Almost all functions of PALturn+ work properly, but some menus in simulation
mode are misplaced. The lower menus and the developer icon are displayed a
little to high and overlay the simulation window.
Developer screenshot as it should be:
http://hubertklinkner.de/palmill/images/Palturn+.png
Steps to reproduce:
1. Start "Palturn+.exe"
2. Enter Ctrl+O and choose "Beispiel.NC3"
3. Press F7
4. Click on "OK übernehmen"
5. Simulation mode begins ...
Regards,
E. Atalan
--
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=34359
Bug #: 34359
Summary: CodeSpells crashes on exit
Product: Wine
Version: 1.7.0
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
To reproduce,
1) download and unzip
fa110e7bfe7a3005bfb2aa0104be051c7fbd1a87 CodeSpells_Windows_Version.zip
from
https://sites.google.com/a/eng.ucsd.edu/codespells/home
2) Run it, accept the resolution, and wait ten seconds for the first grass
scene to be rendered
3) Quit.
It then crashes with
Unhandled exception: page fault on read access to 0x012b7b18 in 32-bit code
(0x005758c0).
Backtrace:
=>0 0x005758c0 in codespells_windows_version (+0x1758c0) (0x0033fdc8)
...
It does not crash on Windows 7.
--
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=33454
Bug #: 33454
Summary: Webbrowser "designmode on" doesn't work properly
Product: Wine
Version: 1.5.28
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
Created attachment 44284
--> http://bugs.winehq.org/attachment.cgi?id=44284
Sample source
http://netikka.net/dev/designmode.exe
Click "Designmode on". -> It clears all existing text.
Terminal: err:mshtml:update_window_doc SetDesignMode failed: 80004003
--
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=34438
Bug #: 34438
Summary: Rexroth Symbol Modeling Tool fails to start
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: lukasz.wojnilowicz(a)gmail.com
Classification: Unclassified
Created attachment 45845
--> http://bugs.winehq.org/attachment.cgi?id=45845
Terminal output on wine-1.7.0-346-g1bf936c
Steps to reproduce:
1) remove ~/.wine
2) winetricks dotnet40 corefonts
3) install D&C Scheme Editor 5
4) wine "Rexroth Symbol Modeling Tool.exe"
Behaviour:
Nothing happens.
Expected behaviour:
Symbol Modeling Tool should start.
Additional info:
Rexroth Symbol Modeling Tool is part of D&C Scheme Editor 5 (URL attached in
header of this 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=21139
Summary: could install game using wine but will not play
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthewpepperell(a)googlemail.com
CC: matthewpepperell(a)googlemail.com
Created an attachment (id=25385)
--> (http://bugs.winehq.org/attachment.cgi?id=25385)
terminal message
I apologise now if i'm just being an idiot but I am a complete novice to linux.
I am using ubuntu 8.10 having had enough of windows, the one thing I miss with
windows is being able to play my football manager games (kills boredom!) I did
some research and found a utility (wine) that could help with my suffering,
after many hours reaserching i got to know the basics of wine and was able to
install my game with no issues. the problem arrose when trying to play the
game, i tried right clicking on the .exe file which did nothing, i then loaded
it in the terminal and the response i got is in the attachment. being I have
only used linux for 3 days the response has blew my mind and have been unable
to find anything on how to fix problem. any ideas i'd be very grateful.
i understand that it could just be that wine is unable to play this game, and
if so i'd just have to deal with it :(
thanks in advance
--
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.