http://bugs.winehq.org/show_bug.cgi?id=32966
Bug #: 32966
Summary: mshtml: crash in get_frame_by_name( "jQuery" ) using
jQuery 1.3.2
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine.dev(a)web.de
Classification: Unclassified
Created attachment 43544
--> http://bugs.winehq.org/attachment.cgi?id=43544
Full log for the jQuery crash
This url crashes in mshtml/htmlwindow.c:407
wine iexplore http://www.w3.org/2008/06/mobile-test/
0025:trace:jscript:jsdisp_get_id not found L"jQuery"
wine: Unhandled page fault on read access to 0x00000088 at address
0x7fddb8869a04 (thread 0025),
which is:
407 hres =
IHTMLElement_get_id(&window_iter->frame_element->element.IHTMLElement_iface,
&id);
wine-1.5.23-152-gb8d081b
--
By by ... Detlef
--
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=31896
Bug #: 31896
Summary: Portable Calibre does not add book to library
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xwang1976(a)email.it
Classification: Unclassified
Created attachment 41985
--> http://bugs.winehq.org/attachment.cgi?id=41985
Console messages after running calibre portable (the first time without trying
to add a book)
When I try to add a book with calibre portable, it correctly opens the window
that let me choose the file and I can select it, but the the process bar
remains fixed at 0% with no disk operation.
--
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=19588
Summary: Symantec LiveUpdate 3.4 - wrong permissions set on
folder
Product: Wine
Version: 1.1.26
Platform: PC
URL: ftp://ftp.symantec.com/public/english_us_canada/liveup
date/3.4/lusetup.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=22841)
--> (http://bugs.winehq.org/attachment.cgi?id=22841)
wine-1.1.26-391-g914a9ca installation console output
The installer for Symantec LiveUpdate 3.4 does complete despite this error,
because it is a fairly simple application.
Basically, incorrect permissions are set on a program folder.
$ ls -l /home/test/.wine2/drive_c/users/Public/Application\ Data
total 232
-rw-r--r-- 1 test test 228661 2009-08-05 23:11 LuInstall.LiveUpdate
dr-xrwsr-x 3 test test 4096 2009-08-05 23:11 Symantec
Attempting to remove this folder (without root access) results in PERMISSION
DENIED.
http://en.wikipedia.org/wiki/Setgid#setgid_on_directories
Wine shouldn't be setting setgid, Windows does not support it.
--
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=27200
Summary: Crazy Machines Demo crashes on start
Product: Wine
Version: 1.3.20
Platform: x86
URL: http://www.gamershell.com/download_7568.shtml
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=34757)
--> (http://bugs.winehq.org/attachment.cgi?id=34757)
backtrace
Installs fine. If you decline directx9 setup, you'll want to run 'winetricks
xact d3dx9_36' to get the missing dlls. After that, crashes on start.
Backtrace 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=29347
Bug #: 29347
Summary: Preview pane in office 2007 file browser does not show
files
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jack(a)codeweavers.com
Classification: Unclassified
>From within an Office 2007 app, going to "open file", and switching the
explorer View to "preview", no Office app except Word will actually generate a
preview (and at that, only with .doc/.docx files - not rtf, for instance).
All other office apps, when looking at files of the type opened by the
respective program, report that the "preview is unavailable."
--
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=31770
Bug #: 31770
Summary: Database FindFirst fails to find the correct record
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Classification: Unclassified
Created attachment 41802
--> http://bugs.winehq.org/attachment.cgi?id=41802
Sample Program
On a database server create a new database
Add the following table
CREATE TABLE testing
(
id serial NOT NULL,
name boolean,
id2 integer,
CONSTRAINT testing_pkey PRIMARY KEY (id)
);
INSERT INTO testing(id, name, id2) VALUES (1, false, 2);
INSERT INTO testing(id, name, id2) VALUES (2, false, 3);
winetricks mdac28
Install the mysql or postgres odbc driver
Using odbcad32, create a connecting to the server.
Run DBSample, select the ODBC connection you just made.
You'll get a dialog with "Yipee" if it was successful.
--
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=29372
Bug #: 29372
Summary: Chrome exit with "fixme:file:ReplaceFileW Ignoring
flags 2" while dragging tabs
Product: Wine
Version: 1.3.35
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
1. Downlaod and install Google Chrome
http://www.google.com/chrome/index.html?platform=win&hl=en&standalone=1
sha1sum :
ChromeStandaloneSetup-b6ea56f7a04f9bcee3565687f5aef83695d13b97-2011-12-09.exe
2.
disable "Allow the window manager to decorate the windows." in winecfg
(Reference: Bug 28467 and Bug 28468)
3.
Start chrome
$ cd ~/.wine/drive_c/users/fracting/Local\ Settings/Application\
Data/Google/Chrome/Application
$ wine chrome.exe
4. make sure there is only one tab, drag the chrome tab away from the origin
position, then chrome will exit with following messages:
fixme:file:ReplaceFileW Ignoring flags 2
fixme:file:ReplaceFileW Ignoring flags 2
fixme:file:ReplaceFileW Ignoring flags 2
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xc8ab1c): stub
fixme:advapi:UnregisterTraceGuids 0: stub
fixme:advapi:UnregisterTraceGuids 0: stub
--
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=12122
Summary: Notepad ++ hangs when opened file gets updated
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jager49(a)zonnet.nl
For as long as I can remember, Notepad++ (including latest version 4.8.2) hangs
when an opened file gets updated. This bug was present in 0.9.46 and 0.9.57. A
window does get created, asking the user whether to reload the file or not
("Yes" / "No"), however that window is non-responsive. The only way out of this
is to force quit the application.
uname -a;
Linux vostro1400 2.6.22-14-generic #1 SMP Tue Feb 12 07:42:25 UTC 2008 i686
GNU/Linux
Distro is Ubuntu Gutsy Gibbon (7.10), although this behavior was observed on
Feisty as well.
I've attached a screenshot of the window that Notepad++ throws. Dragging it
around just clears it and leaves trails all over the background window.
Amazing job guys & good luck with 1.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=25684
Summary: 16 bit ole2 installer hangs
Product: Wine
Version: 1.1.38
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Created an attachment (id=32716)
--> (http://bugs.winehq.org/attachment.cgi?id=32716)
interesting threads from bt all
Happens with both 1.1.38 and current git.
To reproduce:
rm -rf ~/.wine
mkdir tmp
cd tmp
wget
http://download.microsoft.com/download/win31/update/2.03/win/en-us/ww1116.e…
unzip ww1116.exe
wine setup.exe
After clicking ok, it hangs here with
err:ntdll:RtlpWaitForCriticalSection section 0x7eb29760 "syslevel.c:
Win16Mutex" wait timed out in thread 000b, blocked by 0021, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x7efec7c4 "loader.c:
loader_section" wait timed out in thread 0021, blocked by 000b, retrying (60
sec)
and then eventually crashes.
btall says the deadlocked threads are in TASK_ExitTask and LoadLibrary16.
I'll attach the deadlocked thread stacks.
--
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=30974
Bug #: 30974
Summary: No backtrace with Visual C++ 2010 .pdb files in large
app; "Unsupported type 1404 in STRUCT field list"
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dbghelp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
When trying to get a backtrace from a large proprietary app built with
Visual C++ 2010, wine's backtracer issues the errors seen in bug 30973
along with a few more, e.g.
fixme:dbghelp_msc:codeview_add_type_struct_field_list Unsupported type 1404 in
STRUCT field list
fixme:dbghelp_msc:codeview_fetch_type Cannot locate type 103
fixme:dbghelp_msc:codeview_get_type Returning NULL symt for type-id 103
fixme:dbghelp_msc:codeview_snarf S-Udt nullptr_t: couldn't find type 0x103
and fails to generate a useful 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=26321
Summary: Star Wars: Galactic Battlegrounds Clone Campaigns:
1.0x - Exit DataBank will crash game.
Product: Wine
Version: 1.3.15
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bug.me(a)comcast.net
Created an attachment (id=33546)
--> (http://bugs.winehq.org/attachment.cgi?id=33546)
Log file with err:dplay
When you exit DataBank back to the main game menu the game will crash.
--
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=11607
Summary: Blood 2: The Chosen keyboard repeat problem
Product: Wine
Version: 0.9.55.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: liquid.acid(a)gmx.net
Hi there,
I'm filing another Blood 2 bug. This one is input related, more precisely about
keyboard input. I know that the Blood 2 informations on the net mentioned the
support for DirectInput devices, but I'm not sure this is a dinput bug. So I'm
leaving this to unknown for now.
To the problem:
I installed Blood 2 through wine and did no patching (version is still 1.0).
Also the copy protection was not removed, the executable should be clean.
Starting the game and entering the configuration menu I noticed it was very
hard to setup the keys I wanted to use in the game (like moving forward,
backward, etc.)
When running Blood 2 natively you select a action in the menu you want to map.
You press ENTER and the game engine waits for you to press another key, which
it uses for mapping.
Now when running wine I had to be REALLY quick when pressing the mapkey. Like
some milliseconds later, it was really no fun to config the game. When I wasn't
quick enough for an action the ENTER key itself is mapped.
Now the interesting part. When not releasing the ENTER key after pressing it,
and then pressing the mapkey, the process works.
I suspect that the ENTER key generates two events for the game. Pressing and
releasing, and the game interprets both events as seperate key presses, so
ENTER gots mapped to everything (because the engine thinks it's pressed twice).
So either this is X related or a bug in the wine's keyb implementation.
Thanks,
Tobias
--
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=30328
Bug #: 30328
Summary: Arx Fatalis: portrait missing on the character
creation screen
Product: Wine
Version: 1.5.1
Platform: x86
URL: http://www.fileplanet.com/85489/80000/fileinfo/Arx-Fat
alis-Demo-%5BEnglish---Updated%5D
OS/Version: Linux
Status: UNCONFIRMED
Keywords: download, regression
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: matteo.mystral(a)gmail.com
Classification: Unclassified
Regression SHA1: 439097c810bdcb2bd3f838d2ee47369d1f4d7e8a
Created attachment 39631
--> http://bugs.winehq.org/attachment.cgi?id=39631
terminal output
Steps to reproduce the problem with the demo version:
1. Install the demo.
2. Start the game with ARX.exe. You can skip the intro video by pressing <Esc>.
In the main menu choose <New Quest>. You should see that the portrait of the
character is missing on the character generation screen.
For me, the problem appeared in Wine-1.5.1:
439097c810bdcb2bd3f838d2ee47369d1f4d7e8a is the first bad commit
commit 439097c810bdcb2bd3f838d2ee47369d1f4d7e8a
Author: Matteo Bruni <mbruni(a)codeweavers.com>
Date: Wed Mar 28 13:52:11 2012 +0200
wined3d: Update the correct draw buffers mask.
:040000 040000 a75b4bc6948f6fabc49710be4abe72a10e9ffae0
7d9ca1f018b013dfe324fdc382c02fab8ff8694f M dlls
Reverting the patch fixed the problem.
Fedora 16
Nvidia 250 / driver 295.33
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=30045
Bug #: 30045
Summary: Arcanum: objects flickering, periodically disappear
Product: Wine
Version: 1.4-rc5
Platform: x86
URL: http://www.fileplanet.com/59649/50000/fileinfo/Arcanum
:-Of-Steamworks-&-Magick-Obscura-Demo
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: minor
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
CC: hverbeet(a)gmail.com
Classification: Unclassified
Regression SHA1: f20e07b77bec5863e71141cfe623f1ef8ef28c60
Created attachment 39139
--> http://bugs.winehq.org/attachment.cgi?id=39139
screenshot (comparison)
Certain objects, game characters disappear frequently in Arcanum: Of Steamworks
& Magick Obscura during gameplay.
Sometimes they reappear for a short period only to vanish again. They're either
completely missing or only partially drawn.
This happens only when the game is running with hardware rendering. Using the
software renderer (-no3d command line argument) the problem is non-existent.
A plain terminal output doesn't reveal anything interesting.
This is a regression between 1.4-rc4 and 1.4-rc5, caused by
f20e07b77bec5863e71141cfe623f1ef8ef28c60 is the first bad commit
commit f20e07b77bec5863e71141cfe623f1ef8ef28c60
Author: Henri Verbeet <hverbeet(a)codeweavers.com>
Date: Wed Feb 22 09:36:28 2012 +0100
ddraw: Always pin surfaces.
:040000 040000 3a4b5dc1da94b07b08f7ad7d57be18d3e128882f
1ae6afde9ec90129d70c7feac04bd30a2980e82c M dlls
The reverted patch fixed the problem.
Steps to reproduce the problem with the demo:
Install the demo. Start the demo with Arcanum.exe. In the main menu choose
<Single Player>, <New Game>, then <Pick Character>. Skip the intro video. The
game opens with a conversation. You can observe that during the conversation
game characters are missing.
Fedora 16
X.Org X Server 1.11.4
Nvidia 250 / driver 290.10
--
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=31885
Bug #: 31885
Summary: Mohaa demo hang and crash
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
Created attachment 41974
--> http://bugs.winehq.org/attachment.cgi?id=41974
Log: mohaa hang and crash
This is a follow up of Bug 31730
1. Download the Mohaa demo from
http://compactiongames.about.com/od/demos/p/mohaa.htm
4a0c431ed52c4c340b9c883ef859f1d3e7e4ab2e mohaaspdemo.exe
2. install the demo
3. Ctrl+Alt+F1, switch to the text console
4. export MESA_EXTENSION_MAX_YEAR=2003 , work around Bug 31730
5. start the demo with winedbg
$ export DISPLAY=:0.0
$ cd ~/.wine/drive_c/Program Files/EA\ GAMES/MOHAADemo$
$ winedbg MOHAADemo.exe
type 'c' to continue
The above steps is the only way I found to get the backtrace without any helper
machine. (I don't have helper machine to ssh to my testing machine right now)
Actual result:
- The app crash once I type 'Ctrl+Alt+F7' to switch back to GUI.
- The desktop hangs, mouse can move but clicking doesn't work, "alt+tab" can
call out the switching dock but switching doesn't work.
- after `wineserver -k`, the desktop get normal again, expect the screen
resolution which still stay at 800X600.
Backtrace:
=>0 0x700a5453 (0x01bdfa9c)
1 0x0047f25f in mohaademo (+0x7f25e) (0x01bdfe40)
2 0x7b862cc0 call_process_entry+0xb() in kernel32 (0x01bdfe58)
3 0x7b862e06 start_process+0x143(peb=0x7ffdf000)
[/home/fracting/wine-git/dlls/kernel32/process.c:1083] in kernel32 (0x01bdfea8)
4 0x7bc81184 call_thread_func_wrapper+0xb() in ntdll (0x01bdfeb8)
5 0x7bc811cd call_thread_func+0x3e(entry=0x7b862cc2, arg=0x7ffdf000,
frame=0x1bdffb8) [/home/fracting/wine-git/dlls/ntdll/signal_i386.c:2522] in
ntdll (0x01bdff98)
--
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=26143
Summary: pcsx2 0.9.7 (beta) r4268: Failed to load GSdx plugins
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dark-vlados(a)mail.ru
Created an attachment (id=33303)
--> (http://bugs.winehq.org/attachment.cgi?id=33303)
Logs of terminal and pcsx2 log.
Linux version of pcsx2 don't have gsdx plugin (because it used directx). Gsdx -
best video plugin. Almost all games runs only with him!
--
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=15936
Summary: Rollercoaster Tycoon 3 : crashes when start up
Product: Wine
Version: 1.1.7
Platform: PC
URL: http://fenopy.com/torrent/Rollercoaster_Tycoon_3__Full_G
ame_Crack_Cd_Key__Thaboo/MTE4MDM5NA==/index.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: beansoft(a)163.com
Rollercoaster Tycoon 3 crashes when start. I got this output.
fixme:d3d:IWineD3DImpl_FillGLCaps OpenGL implementation supports 32
vertex samplers and 32 total samplers
fixme:d3d:IWineD3DImpl_FillGLCaps Expected vertex samplers +
MAX_TEXTURES(=8) > combined_samplers
fixme:win:EnumDisplayDevicesW ((null),0,0x33f4cc,0x00000000), stub!
fixme:d3d:WineD3D_ChoosePixelFormat Add OpenGL context recreation
support to SetDepthStencilSurface
err:x11settings:X11DRV_ChangeDisplaySettingsEx No matching mode found
1280x960x0 @0! (desktop)
err:x11settings:X11DRV_ChangeDisplaySettingsEx No matching mode found
1600x1200x0 @0! (desktop)
err:quartz:GetClassMediaFile Media class not found
err:quartz:GetClassMediaFile Media class not found
wine: Unhandled page fault on write access to 0x40157bb6 at address
0x140a6f (thread 0009)
--
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=19076
Summary: Create glyphs for U+2660, 2663, 2665, 2665
Product: Wine
Version: 1.1.21
Platform: PC
URL: https://bugs.edge.launchpad.net/ubuntu/+source/wine/+b
ug/80963
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scott(a)open-vote.org
>From launchpad:
I use wine to execute Windows program "Marriage" (http://www.marriage.ru).
All is OK except the special character (suits: spider etc. U+2660, 2663,2665,
2665).
Choosing another font does not 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=31457
Bug #: 31457
Summary: Dark Screen while playing, orcs must die and portal
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adam.thomas.rogerson(a)googlemail.com
Classification: Unclassified
Created attachment 41348
--> http://bugs.winehq.org/attachment.cgi?id=41348
This is the game.
I am quite sorry if for the lack of information with this issue im a luinx
neewbie so i am unsure what infromation is important.
I have been trying to run "Orcs Must Die 2" on my Ubuntu 12.04 84bit, useing
wine 1.5. On a ivy brige desktop chip set.
When i launch the game every thing is fine, i can see the logo and even the
cinematic. but in the main menu and more importaly while runing the game most
of it is very dark. Its not black its really dark gray. I have uploaded some
screen shots.
The game does not crash and i can play it.
Thank you for taking the time to read this.
--
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=31894
Bug #: 31894
Summary: End of Nations - Unable to connect to shard
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: 942sam(a)gmail.com
Classification: Unclassified
Installed End of Nations beta (build #384978), the game opens correctly. When
selecting the shard in main menu and pressing join shard I get "Unable to
connect to shard" error message after a few seconds. The game runs correctly in
windows.
The game requires constant internet connection, and adding many debug output
slows it down which results in kick/disconnect.
There is no console output when this error happens. Attached log output before
this error.
--
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=30034
Bug #: 30034
Summary: Adobe Edge Preview 4 fails to install
Product: Wine
Version: 1.4-rc5
Platform: Other
URL: https://www.adobe.com/cfusion/entitlement/index.cfm?e=
labs_edge
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robert.munteanu(a)gmail.com
Classification: Unclassified
The installer fails to complete its execution. It initialises successfully and
allows me to select an install location. Afterwards it presents a generic error
message : your installation has failed.
The installation fails with WINEARCH=win32 as well.
--
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=30525
Bug #: 30525
Summary: OEC Trader unable to run
Product: Wine
Version: 1.4
Platform: x86-64
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tprzemek(a)gmail.com
Classification: Unclassified
I was able to install it, it asked later for dotnet 2.0 SP2 which installed
successfully. First execution of Trader.exe gave me a pop up with updates
available which I proceeded with.
After updating and running Trader.exe again it gave me two pop ups with Errors
and app failed to start.
Please look at the console output:
$ wine Trader.exe
Dynamic session lookup supported but failed: launchd did not provide a socket
path, verify that org.freedesktop.dbus-session.plist is loaded!
fixme:sync:CreateMemoryResourceNotification (0) stub
err:ole:CoGetContextToken apartment not initialised
fixme:shell:URL_ParseUrl failed to parse L"System.Windows.Forms"
fixme:shell:URL_ParseUrl failed to parse L"OECAPIUI"
fixme:shell:URL_ParseUrl failed to parse L"OECUI"
fixme:shell:URL_ParseUrl failed to parse L"API"
fixme:shell:URL_ParseUrl failed to parse L"Plugins"
fixme:shell:URL_ParseUrl failed to parse L"System.Drawing"
fixme:shell:URL_ParseUrl failed to parse L"System.Configuration"
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse L"Accessibility"
fixme:shell:URL_ParseUrl failed to parse L"System.Xml"
fixme:shell:URL_ParseUrl failed to parse L"Trader.XmlSerializers"
fixme:shell:URL_ParseUrl failed to parse L"Trader"
fixme:wincodecs:JpegDecoder_Frame_GetResolution (0x18c794,0x32ea58,0x32ea50):
stub
fixme:shell:URL_ParseUrl failed to parse L"CommLib"
fixme:time:GetCalendarInfoW flag CAL_NOUSEROVERRIDE used, not fully implemented
fixme:imm:ImmDisableIME (-1): stub
fixme:thread:NtQueryInformationThread Cannot get kerneltime or usertime of
other threads
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:thread:NtQueryInformationThread info class 9 not supported yet
fixme:advapi:RegisterEventSourceW ((null),L".NET Runtime 2.0 Error Reporting"):
stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00001388,0x0,0x000b,0x000000d8,0x3009b09c,0x6ed254):
stub
err:eventlog:ReportEventW L"clr20r3"
err:eventlog:ReportEventW L"trader.exe"
err:eventlog:ReportEventW L"3.5.0.40"
err:eventlog:ReportEventW L"4f8dda7b"
err:eventlog:ReportEventW L"trader"
err:eventlog:ReportEventW L"3.5.0.40"
err:eventlog:ReportEventW L"4f8dda7b"
err:eventlog:ReportEventW L"72"
err:eventlog:ReportEventW L"f1"
err:eventlog:ReportEventW L"system.typeinitialization"
err:eventlog:ReportEventW L"NIL"
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
fixme:richedit:ME_HandleMessage EM_SETMARGINS: stub
err:ole:CoUninitialize Mismatched CoUninitialize
err:ole:CoUninitialize Mismatched CoUninitialize
Unhandled Exception: System.TypeInitializationException: The type initializer
for 'OEC.UI.CultureManager' threw an exception. ---> System.ArgumentException:
Culture name 'ga-ie' is not supported.
Parameter name: name
at System.Globalization.CultureTableRecord..ctor(String cultureName, Boolean
useUserOverride)
at System.Globalization.CultureTableRecord.GetCultureTableRecord(String
name, Boolean useUserOverride)
at System.Globalization.CultureTableRecord.GetCultureTableRecord(Int32
cultureId, Boolean useUserOverride)
at System.Globalization.CultureInfo..ctor(Int32 culture, Boolean
useUserOverride)
at System.Globalization.CultureInfo..ctor(Int32 culture)
at System.Globalization.CultureTable.GetCultures(CultureTypes types)
at OEC.UI.CultureManager.IsValidCultureName(String cultureName)
at OEC.UI.CultureManager..cctor()
--- End of inner exception stack trace ---
at OEC.UI.CultureManager.set_RequireRestart(Boolean value)
at OEC.Trader.Program.Main()
wine: Unhandled exception 0xe0434f4d at address 0x7b82c7f2 (thread 0009),
starting debugger...
Unhandled exception: 0xe0434f4d in 32-bit code (0x7b82c7f2).
Register dump:
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f
EIP:7b82c7f2 ESP:0032ec34 EBP:0032eca8 EFLAGS:00000246( - -- I Z- -P- )
EAX:7b818345 EBX:7b82c77e ECX:00000000 EDX:00000000
ESI:00000001 EDI:001416f0
Stack dump:
0x0032ec34: 0032ecec 00000004 0000003c e0434f4d
0x0032ec44: 00000001 00000000 7b82c7f2 00000001
0x0032ec54: 80131534 0032ec64 79e7ff53 00000038
0x0032ec64: 0032ec80 79e7ff9c 00000038 001416f0
0x0032ec74: 0032ecec 003a2010 02000038 0032ec90
0x0032ec84: 79e80024 0032ec98 02000038 0032ec9c
0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x7b82c7f2 in kernel32 (+0x1c7f2) (0x0032eca8)
1 0x79eda91c in mscorwks (+0x6a91b) (0x0032ed14)
2 0x7a097ad1 in mscorwks (+0x227ad0) (0x0032ed2c)
3 0x7a097b43 in mscorwks (+0x227b42) (0x0032ed54)
4 0x7a097b74 in mscorwks (+0x227b73) (0x0032ed80)
5 0x7a097b82 in mscorwks (+0x227b81) (0x0032ed90)
6 0x79fb9225 in mscorwks (+0x149224) (0x0032f288)
7 0x79e81043 in mscorwks (+0x11042) (0x0032f2d8)
8 0x79e81363 in mscorwks (+0x11362) (0x0032f328)
9 0x0074e1be (0x0032f340)
10 0x031a9058 (0x0032f370)
11 0x79e71b4c in mscorwks (+0x1b4b) (0x0032f380)
12 0x79e821b1 in mscorwks (+0x121b0) (0x0032f400)
13 0x79e96501 in mscorwks (+0x26500) (0x0032f538)
14 0x79e96534 in mscorwks (+0x26533) (0x0032f554)
15 0x79e96552 in mscorwks (+0x26551) (0x0032f56c)
16 0x79eefa45 in mscorwks (+0x7fa44) (0x0032f6d0)
17 0x79eef965 in mscorwks (+0x7f964) (0x0032f938)
18 0x79eefeb5 in mscorwks (+0x7feb4) (0x0032fe08)
19 0x79ef009f in mscorwks (+0x8009e) (0x0032fe58)
20 0x79eeffcf in mscorwks (+0x7ffce) (0x0032fea0)
21 0x79007c24 in mscoree (+0x7c23) (0x0032feb0)
22 0x7b84e13c in kernel32 (+0x3e13b) (0x0032fec8)
23 0x7b851197 in kernel32 (+0x41196) (0x0032ff08)
24 0x7bc64cbc (0x0032ff28)
25 0x7bc65dba (0x0032ffa8)
26 0x7bc64c82 (0x0032ffc8)
27 0x7bc3e2de (0x0032ffe8)
0x7b82c7f2: subl $4,%esp
Modules:
Module Address Debug info Name (38 modules)
PE 400000- 63e000 Deferred trader
PE 37b0000- 38c6000 Deferred oecui
PE 3a60000- 3a6a000 Deferred plugins
PE 3f90000- 4382000 Deferred oecapiui
PE 4c30000- 4c62000 Deferred commlib
PE 11000000-1105e000 Deferred api
PE 40590000-40594000 Deferred advapi32
PE 40790000-40794000 Deferred version
PE 41c90000-41c98000 Deferred shlwapi
PE 41d10000-41d4a000 Deferred user32
PE 41e60000-41e66000 Deferred gdi32
PE 41fb0000-41fb4000 Deferred imm32
PE 43fb0000-43fb4000 Deferred winex11
PE 443f0000-443f8000 Deferred ole32
PE 44530000-44534000 Deferred rpcrt4
PE 44700000-44857000 Deferred shell32
PE 44950000-4497e000 Deferred comctl32
PE 44a60000-44a64000 Deferred uxtheme
PE 44aa0000-44aa4000 Deferred rsaenh
PE 44ae0000-44b19000 Deferred crypt32
PE 44ba0000-44ba4000 Deferred gdiplus
PE 44c30000-44cc2000 Deferred oleaut32
PE 44d50000-44d56000 Deferred windowscodecs
PE 5e3a0000-5e42d000 Deferred diasymreader
PE 60000000-60008000 Deferred accessibility
PE 637a0000-63998000 Deferred system.xml
PE 64890000-648fc000 Deferred system.configuration
PE 78000000-78044000 Deferred msvcrt
PE 78130000-781cb000 Deferred msvcr80
PE 79000000-79046000 Export mscoree
PE 79060000-790bb000 Deferred mscorjit
PE 790c0000-79518000 Deferred mscorlib
PE 79e70000-7a400000 Export mscorwks
PE 7a440000-7a744000 Deferred system
PE 7ade0000-7ae7c000 Deferred system.drawing
PE 7afd0000-7b49e000 Deferred system.windows.forms
PE 7b810000-7b987000 Export kernel32
PE 7bc10000-7bc14000 Deferred ntdll
Threads:
process tid prio (all id:s are in hex)
00000008 (D) C:\Program Files\OEC\Trader Demo 3.5\Trader.exe
00000025 2
00000024 0
00000009 0 <==
0000000e services.exe
00000020 0
0000001f 0
00000018 0
00000017 0
00000015 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001d 0
00000019 0
00000014 0
00000013 0
0000001a plugplay.exe
00000021 0
0000001e 0
0000001b 0
00000022 explorer.exe
00000023 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=16316
Summary: Vademecum Przedsiębiorcy 2009 NS displays incorrectly
(unusable)
Product: Wine
Version: 1.1.9
Platform: PC
URL: http://www.netsystem.info.pl/download/vademecumdemo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: piekarzarkadiusz(a)gmail.com
Created an attachment (id=17621)
--> (http://bugs.winehq.org/attachment.cgi?id=17621)
How it looks in Wine
Vademecum Przedsiębiorcy 2009 NS is a software for small companies to manage
their documents and work. It installs and launches fine, but the interior of
its window is displayed completely wrong. It's gray with random stuff (read
from a bad memory sector?), while there should be a folder tree on the left and
list of documents on the right. You can click on menu buttons on top, but only
when the cursor is above them, not directly on them. I've attached screenshots
of how it should look and how it is in Wine.
You can download a demo from here -
http://www.netsystem.info.pl/download/vademecumdemo.exe
Ubuntu 8.10, Metacity / Compiz (same look), Wine 1.1.9-340-g934aa49.
--
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=31394
Bug #: 31394
Summary: Loading Serious Sam HD the second encounter loads into
a black screen then drops to a bug fault.
Product: Wine
Version: 1.5.10
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r_carran(a)yahoo.co.nz
Classification: Unclassified
Loading Serious Sam HD the second encounter loads into a black screen then
drops to a bug fault.
--
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=25310
Summary: Bugs in RtlUnwindEx
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mkoegler(a)auto.tuwien.ac.at
MSDN (http://msdn.microsoft.com/en-us/library/ms680615(VS.85).aspx) describes
the passed context as scratch-space, not something that the application has to
initialize. The wine implemetation expect a valid context.
Looking at the debug output, it is also clearly visible, that the wine
implementation unwinds the stack pointer one stack frame to far.
The attached patch fixes these problems:
* RtlUnwindEx is called via DEFINE_REGS_ENTRYPOINT and the new context is used
as starting point.
* Stay at the same context, if the target stack frame has been reached.
There have been more infomation about the internal of RtlUnwindEx published:
http://www.nynaeve.net/?p=113
The patch make RtlUnwindEx more compilant with this description - it is still
incomplete.
--
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=31453
Bug #: 31453
Summary: Witcher: Enhanced Edition -- Crashed at map point in
chapter 1
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nrdcoupon(a)gmail.com
Classification: Unclassified
Downloaded Witcher:Enhanced Edition for Mac from Steam. Working within Chapter
I and the game crashed due to wine every time when crossing a certain part of
the map.
--
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=31345
Bug #: 31345
Summary: Vampire The Masquerade: Bloodlines crashes on new game
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: almaron(a)gmail.com
Classification: Unclassified
Created attachment 41190
--> http://bugs.winehq.org/attachment.cgi?id=41190
The terminal log
The game starts normaly, options are working, but when I try to start a new
game, wine crashes in just couple seconds. All the needed dlls are installed
from winetricks.
Tried to use the advice from AppDB
http://appdb.winehq.org/objectManager.php?sClass=version&iId=4949 but it did
not change anything.
--
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=30630
Bug #: 30630
Summary: Java: chrome plugin installer fails
Product: Wine
Version: 1.5.3
Platform: x86
URL: http://www.java.com/en/download/manual.jsp
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Depends on: 26725
Classification: Unclassified
Install chrome (you'll probably need native winhttp to work around bug 30023).
Then, go to install java (http://java.com/en/download/chrome.jsp?locale=en):
78a4d33f4cb87e2c63a272bb2c4e13f6b4cdeef3 chromeinstall-7u4.exe
run that, the download will fail. Workaround, winetricks wininet (bug 26725).
Retry:
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:shell:SHFlushSFCacheWrap : stub
fixme:ras:RasEnumConnectionsA (0x630607a8,0x33a084,0x6305f610),stub!
fixme:ras:RasEnumConnectionsA RAS support is not implemented! Configure program
to use LAN connection/winsock instead!
fixme:service:EnumServicesStatusW resume handle not supported
fixme:ras:RasEnumEntriesA ((nil),(null),0x3375f4,0x337db0,0x337dac),stub!
fixme:ras:RasEnumEntriesA ((nil),(null),0x3375f4,0x337db0,0x337dac),stub!
fixme:urlmon:protocol_continue Could not get cache file
fixme:urlmon:DownloadBSC_OnStopBinding No cache file
Error opening file C:\users\austin\Application
Data\Sun\Java\jre1.7.0_04\Java3BillDevices.jpg
Error: 2
fixme:ras:RasEnumEntriesA ((nil),(null),0x8cd1c0,0x8cd97c,0x8cd978),stub!
fixme:ras:RasEnumEntriesA ((nil),(null),0xccd1b8,0xccd974,0xccd970),stub!
fixme:ras:RasEnumEntriesA ((nil),(null),0x339514,0x339cd0,0x339ccc),stub!
fixme:service:EnumServicesStatusW resume handle not supported
fixme:ras:RasEnumEntriesA ((nil),(null),0x3388a4,0x339060,0x33905c),stub!
fixme:crypt:CRYPT_RegControl CERT_STORE_CTRL_AUTO_RESYNC: stub
fixme:crypt:CRYPT_RegControl CERT_STORE_CTRL_AUTO_RESYNC: stub
fixme:secur32:schan_imp_create_session Using hardcoded "NORMAL" priority
fixme:wintrust:HTTPSCertificateTrust (0x151038)
fixme:wintrust:HTTPSFinalProv (0x151038)
perhaps cryto related?
--
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=24828
Summary: Unhandled Exception running JRWorker.exe
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tombert(a)live.at
The following application includes an DLNA service:
http://www.jriver.com/
version 15
wich causes an unhandled exception.
log files attached.
thx
--
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=32804
Bug #: 32804
Summary: Ace of Spades fails to launch from Steam
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeff(a)deserettechnology.com
Classification: Unclassified
When one tries to launch Ace of Spades retail from Steam, the following thing
is emitted: fixme:msvcrt:__clean_type_info_names_internal (0x1e2225c0) stub,
and nothing else happens. The exe runs briefly and silently exits. Steam
doesn't provide the typical "Preparing to launch Ace of Spades..." window.
Have tried after installing vcrun2008 with no effect.
--
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=25673
Summary: Garry's Mod 12 crashes to desktop on startup
Product: Wine
Version: 1.3.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sunderphon(a)gmail.com
Created an attachment (id=32701)
--> (http://bugs.winehq.org/attachment.cgi?id=32701)
Log of crash to desktop Garry's Mod 11 bug
Upon running Garry's Mod it crashes to desktop after a few seconds (before any
loading screen is shown)
Attached bug log shows the output when run via terminal.
--
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=14911
Summary: Unable to run Drakensang demo
Product: Wine
Version: CVS/GIT
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)eikel.org
Created an attachment (id=15483)
--> (http://bugs.winehq.org/attachment.cgi?id=15483)
Screenshot of dialog box containing error message.
I am able to start the Drakensang demo with the "patch" suggested in bug
#14758. I see a loading screen with a progress bar. When the bar is full, the
game crashes and shows a dialog box (screenshot attached together with wine
output).
I am using Debian GNU/Linux unstable, Linux kernel version 2.6.26-1-amd64
(Debian package) on x86_64 with the Git version of Wine
(wine-1.1.2-406-ge1e6caf). Graphics card is a NVIDIA GeForce 9600 GT with
driver version 173.14.12.
--
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=19296
Summary: "Uru: Ages beyond myst" fails to install
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: NJT(a)fishlegs.co.uk
Created an attachment (id=22344)
--> (http://bugs.winehq.org/attachment.cgi?id=22344)
Debug output from Uru setup.exe
Launch window looks fine, but choosing the install option results in unhandled
page fault (see attachment).
This bug (or similar) may have previously been closed when I was unable to
supply test information after my original Uru CD became a coaster. I have
recently acquired a non-coaster version.
--
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=15269
Summary: Microsoft Office 2007: language settings dialog is
useless
Product: Wine
Version: 1.1.4
Platform: PC
OS/Version: Linux
Status: NEW
Severity: trivial
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=16062)
--> (http://bugs.winehq.org/attachment.cgi?id=16062)
screenshot with builtin
See screenshots/traces. The language settings dialog is squashed not of any
use. Native richedit fixes it.
--
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=31730
Bug #: 31730
Summary: MOHAA Demo crash at startup
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fracting(a)gmail.com
Classification: Unclassified
A Linux user report that Mohaa doesn't work to the forum of Deepin Linux, I
forward his report here.
wine-1.5.13-63-gcaf6fe0
1. Download the Mahaa demo from
http://compactiongames.about.com/od/demos/p/mohaa.htm
4a0c431ed52c4c340b9c883ef859f1d3e7e4ab2e mohaaspdemo.exe
2. Install the demo
While installing, there are lots of repeated output like below:
err:ole:marshal_object object doesn't expose interface
{be6115a1-7de5-48dc-ad2a-25060e00fce2}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
3. Start MOHAADemo:
~/.wine/drive_c/Program Files/EA GAMES/MOHAADemo$ wine MOHAADemo.exe
err:seh:setup_exception_record stack overflow 2176 bytes in thread 0009 eip
7bc3ef44 esp 013e0ab0 stack 0x13e0000-0x13e1000-0x1be0000
Segmentation fault
No other outputs.
--
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=25222
Summary: Football Manager 2011 fails to load with 3d enabled
Product: Wine
Version: 1.3.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maquis196(a)yahoo.co.uk
Created an attachment (id=32024)
--> (http://bugs.winehq.org/attachment.cgi?id=32024)
debug output for fm2011
When loading Football Manager 2011, the game fails to load with an error
reporting to be something about not being able to change back buffer count.
The issue that we have (if you look at appdb page several of us have been
working to try and locate issue) is that it _has_ worked in the past on the
same box; with both the full version and the demo I've had the game working
flawlessly in 3d.
I've never been able to duplicate my efforts as to how I got it working, even
doing the same steps which is why I'm raising this bug. The game has a separate
2d match bug/issue which I shall post at some point. So between these 2 errors
the game is unplayable.
I've attached the log and I'm happy to run whatever tests are required (right
down to new distro, drivers, etc)
Box info; (on my work box right now where I got the game working last time)
Nvidia quadro nvs 450, driver version 260.19.21
Gentoo x86_64 ~amd64
glibc 2.12.1-r3
xorg 1.9.2.901
2.6.34-gentoo
wine 1.3.6
--
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=30269
Bug #: 30269
Summary: Imperium Galactica 2 : Glitches with background
textures
Product: Wine
Version: 1.5.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maquis196(a)yahoo.co.uk
Classification: Unclassified
Created attachment 39540
--> http://bugs.winehq.org/attachment.cgi?id=39540
Console output
The fix to bug 13615 created an issue where what I can only describe as
background textures behave strangely. On the main menu there are asteroids that
shoot towards to the screen and some of them spin much quicker then they did
before the fix.
On the main galactic screen, you don't notice anything if the camera is
completely top down. Once you start moving the camera angle to match the
horizontal plane the background blurs and doesn't update. I'll attach an image
for an example.
--
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=31726
Bug #: 31726
Summary: JScript Date.parse doesn't work
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: jscript
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ocean04(a)suomi24.fi
Classification: Unclassified
wine iexplore http://netikka.net/dev/dateparse.html
fixme:jscript:Date_value unimplemented flags 2
err:ole:ITypeInfo_fnInvoke failed to convert param 0 to VT_BSTR from
VT_DISPATCH
Native oleaut32 error is gone, but it still shows nothing. Works with native
jscript.
You can also test
wine iexplore http://netikka.net/dev/dateparse3.html
That shows incorrect value with builtin jscript
--
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=29337
Bug #: 29337
Summary: Starcraft Campaign Editor shows Wine icon instead of
map icon
Product: Wine
Version: 1.3.34
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alexhenrie24(a)gmail.com
Classification: Unclassified
Created attachment 37954
--> http://bugs.winehq.org/attachment.cgi?id=37954
Wine icon instead of map icon
The Starcraft Campaign Editor shows a Wine icon instead of a map icon in the
upper-left corner.
--
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=25885
Summary: Legions Overdrive: PageFault on game launch
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=32993)
--> (http://bugs.winehq.org/attachment.cgi?id=32993)
Unhandled exception: page fault on read access to 0x00004e4f in 32-bit code
(0x00004e4f).
After updating (or copying complete installation from Windows PC to linux) you
should be able to simply click play. However, as soon as the game launches a
pagefault occurs.
--
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=30628
Bug #: 30628
Summary: Battlefield Bad Company 2 audio doesn't work in-game
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ajsb(a)vfemail.net
Classification: Unclassified
I have this game and installed it easily from iso , program launches normally
with audio working but as soon as it arrives main menu it mutes audio.
I have it set manually to DX9 and i have no problem playing online in servers
unranked (no PunkBuster) but audio never works. ...performance of game is not
bat at all BTW....using wine 1.5.3 with several M$ stuff like vc++2005 2008 and
2010 ,etc. ("regular" stuff that i use with all games that are anyway installed
by many games by default)...
Any clue why audio is mutting as soon as arrives main menu of game but plays
well till then ?!?
--
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=25892
Summary: Mini Racing Online: Cars are invisible
Product: Wine
Version: 1.3.12
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Game loads and appears to be functioning properly now, except the cars appear
as shadows and have no texture.
--
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=31489
Bug #: 31489
Summary: C&C - Red Alert 2 can not enter campaign when
fullscreen
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fpemud(a)sina.com
Classification: Unclassified
When I enter the campaign menu, I can't select soviet or allied.
When the mouse is on the big icon, nothing happens. (the icon should turn
bright or flash)
If I runs Ra2 in virtual desktop, this problem is gone.
If I upgrade to wine-1.5.9, there's a regression so the Ra2 can't be start, so
I went back to wine-1.5.2
I would like to solve it, can anyone give me some guide?
It's not a crash, so I don't know what info to collect.
Is there any doc describes what's different between fullscreen and
virtual-desktop?
Or how should I start to look at the relavent code?
--
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=13820
Summary: Yahoo! Messenger 9.0 beta hangs on login
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://messenger.yahoo.com/download/win/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=13866)
--> (http://bugs.winehq.org/attachment.cgi?id=13866)
Yahoo! Messenger output
With Wine version wine-1.0-rc4-29-g035f1dd, when attempting to login, the beta
client simply hangs and does not progress with login. I've logged the standard
error with wininet traces when attempting to login and then subsequently
closing the client.
--
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=26096
Summary: Machine type is not IEEE
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivit(a)list.ru
Mathematical package ProgramCC when entering commands from the keyboard
displays a message: *** Error: Unrecognized character.
When you open a standard example of an error: 'Machine type is not IEEE little'
encountered when loading 1st variable.
If you enter any character in the command window error message appears in the
Wine c recommendation to create an bug for http://bugs.winehq.org and the
program is unloaded.
ProgramCC package designed for Windows 98.
--
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=20041
Summary: Multiplayer not working for Rise of Nation Gold
Product: Wine
Version: 1.1.29
Platform: PC
URL: http://www.microsoft.com/games/riseofnations/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dr_kneh(a)hotmail.com
Created an attachment (id=23589)
--> (http://bugs.winehq.org/attachment.cgi?id=23589)
Console Dump
Installing and playing (including sound) works after following guide at:
http://www.damonkohler.com/2008/09/how-to-run-rise-of-nations-with-wine.html
However, as soon as you choose one of the two multiplayer options in the
Multiplayer Menu, a message appears saying
"Unable to establish a network connection. Please check your network connection
and try again."
Although my sound has stopped working after I messed something up, the game
otherwise works normal, and the same thing happened when sound was working.
When I click one of the options, I get the 'fixme:thread' message, followed by
the two 'fixme:iphlpapi' messages concerning IPv6 support. Therefore I tried to
disable IPv6 several ways and reinstall the game each time, and tried editing
the /etc/modprobe.d/hosts files according to the wine FAQ, but the problem
still appears.
--
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=14966
Summary: Error inserting clip art on MS Word XP
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: tahoward(a)nc.rr.com
I haven't customized anything in winecfg, except setting OS version to Windows
XP. In Word, when I select Insert -> Picture -> Clip Art... , an error message
appears saying "Clip Organizer cannot complete the operation. Error Code
0x80040155". In the wine log, I see:
err:ole:marshal_object couldn't get IPSFactory buffer for interface
{0c733a8b-2a1c-11ce-ade5-00aa0044773d}
err:ole:StdMarshalImpl_MarshalInterface Failed to create ifstub,
hres=0x80040155
err:ole:CoMarshalInterface Failed to marshal the interface
{0c733a8b-2a1c-11ce-ade5-00aa0044773d}, 80040155
fixme:ole:CFStub_Invoke CoMarshalInterface failed, 80040155!
err:rpc:I_RpcReceive we got fault packet with status 0x80040155
fixme:ole:CFProxy_CreateInstance IRpcChannelBuffer_SendReceive failed with
80040155?
fixme:ole:CoCreateInstance no instance created for interface
{0c733a8b-2a1c-11ce-ade5-00aa0044773d} of class
{09e767a6-4481-4791-86a5-a739e5290e4c}, hres is 0x80040155
--
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=26011
Summary: BitLocker.exe not working with wine
Product: Wine
Version: 1.3.13
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paloseco(a)gmail.com
Created an attachment (id=33174)
--> (http://bugs.winehq.org/attachment.cgi?id=33174)
Log of the BitLocker.exe errors when trying to load USB Removable
BitLocker.exe is a tool for reading/writing partitions or USB removable media
encrypted with the BitLocker application included with Windows 7 Ultimate
(similar to TrueCrypt). The pendrives encrypted include the portable
application to read/write from windows xp platform.
>From winecfg I've created a new drive pointing to the folder where the USB
Removable is mounted, but doesn't work due to unimplemented features.
--
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.