http://bugs.winehq.org/show_bug.cgi?id=21483
Summary: changed token security breaks .NET Framework SDK tools
Product: Wine
Version: 1.1.33
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wineserver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Hello,
some of Microsoft's tools from .NET Framework SDKs - namely managed debuggers
(CLR) - stopped working after 1.1.33+ release. They seem to be very picky about
object security.
I bisected this one but technically this isn't a regression because Rob's token
patches made Wine more correct - exposing another object security problem.
--- snip ---
$ git bisect bad
bd56916f90e68632993a7275fe30a55a7efa222a is the first bad commit
commit bd56916f90e68632993a7275fe30a55a7efa222a
Author: Rob Shearman <robertshearman(a)gmail.com>
Date: Mon Nov 16 20:11:06 2009 +0000
server: Extend get_token_user server call to also retrieve SIDs for the
token's owner or primary group.
:040000 040000 829f1543526675ae48f6fde8c8cedff74fd51797
7a77653291795c209ec529dd6660d52fc922a58c M dlls
:040000 040000 57735b53b28db37ac4627dc009000e225175164a
4dcc1388cb136e559c06106632c08e8e610fe557 M include
:040000 040000 4e83227cb0133c7e288a1e930461d4efe1130882
cf1c3539d6b3c91c854fa2b9b672f68ea601f639 M server
--- snip ---
"old" behaviour, where default process token was like this:
Token owner -> S-1-5-4 "NT AUTHORITY\INTERACTIVE" (well-known group)
Token user -> S-1-5-4 "NT AUTHORITY\INTERACTIVE" (well-known group)
Token primary group -> S-1-5-32-544 "BUILTIN\Administrators" (alias)
NtQueryInformationToken had the token owner info hard-coded (to
SECURITY_INTERACTIVE_RID) while Rob's patches moved the actual query to
wineserver.
---
Basically the app code that verifies the security of created objects goes like
this:
- get SD from created object (event) handle -> GetKernelObjectSecurity(
OWNER_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION)
- get owner SID of SD -> GetSecurityDescriptorOwner() -> SID1
- get DACL of SD -> GetSecurityDescriptorDacl()
- for each ACE from DACL (GetAce) -> SID2: check ACE SID against SD owner SID
-> EqualSid( SID1, SID2)
- match -> profit! not -> fail!
--- snip ---
...
0023: create_event( access=001f0003, attributes=00000080, manual_reset=1,
initial_state=0, objattr={rootdir=0014,sd={control=00000004,owner=<not
present>,group=<not
present>,sacl={},dacl={{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-4}},{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-4}}}},name=L"Global\\CorDBIPCSetupSyncEvent_36"}
)
0023: create_event() = 0 { handle=01c4 }
...
0025:trace:advapi:GetKernelObjectSecurity
(0xc4,0x00000005,0x14ef40,0x00000050,0x33f7e8)
0025:trace:ntdll:NtQuerySecurityObject
(0xc4,0x00000005,0x14ef40,0x00000050,0x33f7e8)
0025: get_security_object( handle=00c4, security_info=00000005 )
0025: get_security_object() = 0 { sd_len=00000050,
sd={control=00000037,owner={S-1-5-4},group=<not
present>,sacl={},dacl={{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-4}},{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-4}}}}
}
0025:trace:ntdll:RtlGetDaclSecurityDescriptor
(0x14ef40,0x33f7c3,0x33f7ec,0x33f7c2)
0025:trace:ntdll:RtlGetAce (0x14ef60,0,0x33f7f0)
0025:trace:ntdll:RtlLengthSid sid=0x14ef54
0025: open_event( access=001f0003, attributes=00000002, rootdir=0034,
name=L"Global\\CorDBIPCLSEventAvailName_36" )
0025: open_event() = 0 { handle=00c8 }
...
--- snip ---
"new" behaviour, where default process token is now like this:
Token owner -> S-1-5-32-544 "BUILTIN\Administrators" (alias)
Token user -> S-1-5-4 "NT AUTHORITY\INTERACTIVE" (well-known group)
Token primary group -> S-1-5-32-544 "BUILTIN\Administrators" (alias)
--- snip ---
...
0024:trace:ntdll:NtOpenProcessTokenEx (0x1b0,0x00000008,0x00000000,0x318e6d0)
0024: open_token( handle=01b0, access=00000008, attributes=00000000,
flags=00000000 )
0024: open_token() = 0 { token=01b4 }
...
0024:trace:advapi:GetTokenInformation (0x1b4, TokenOwner, 0x184130, 20,
0x318e6e0):
0024:trace:ntdll:NtQueryInformationToken (0x1b4,4,0x184130,20,0x318e6e0)
0024: get_token_sid( handle=01b4, which_sid=00000004 )
0024: get_token_sid() = 0 { sid_len=16, sid={S-1-5-32-544} }
...
0024: create_event( access=001f0003, attributes=00000080, manual_reset=1,
initial_state=0, objattr={rootdir=0018,sd={control=00000004,owner=<not
present>,group=<not
present>,sacl={},dacl={{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-32-544}},{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-32-544}}}},name=L"Global\\CorDBIPCSetupSyncEvent_37"}
)
0024: create_event() = 0 { handle=01c8 }
...
0026:trace:advapi:GetKernelObjectSecurity
(0xc8,0x00000005,(nil),0x00000000,0x33f7e8)
0026:trace:ntdll:NtQuerySecurityObject
(0xc8,0x00000005,(nil),0x00000000,0x33f7e8)
0026: get_security_object( handle=00c8, security_info=00000005 )
0026: get_security_object() = 0 { sd_len=00000058,
sd={control=00000037,owner={S-1-5-4},group=<not
present>,sacl={},dacl={{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-32-544}},{AceType=ACCESS_ALLOWED_ACE_TYPE,Mask=e01f001f,AceFlags=0,Sid={S-1-5-32-544}}}}
}
...
--- snip ---
Using the "admins" sid (alias) as token user in
server/token.c:token_create_admin() instead of current "interactive" sid fixes
the problem. Though I don't know if this is the right thing to do.
I hope I provided enough infos and let Alexandre handle it ;-)
To get detailed token infos/dumps you might be interested in this little
console app, from cygwin's Corinna Vinschen ;-)
http://www.mail-archive.com/cygwin@cygwin.com/msg71800.html
It might provide useful information when run under different security
principals.
Regards
--
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=21235
Summary: Monopoly Deluxe crash while starting
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://cdn.media.zylom.com/games/2130/7/34/2964/monopo
lydownload.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
Created an attachment (id=25512)
--> (http://bugs.winehq.org/attachment.cgi?id=25512)
backtrace
After the initial screen, when you click in the button to start the game it
just crash. I'm attaching the 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.
https://bugs.winehq.org/show_bug.cgi?id=46178
Bug ID: 46178
Summary: Dreamfall The Longest Journer: collisions detection
problem
Product: Wine
Version: 3.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hbatkiewicz898(a)gmail.com
Distribution: ---
Game has potentially serious problem with collisions detection. For now I've
just found it only in a one, specific location but it could be more serious in
the next chapters.
https://www.youtube.com/watch?v=0U9mu9L6NMw
--
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=14239
Summary: Sonos Desktop Controller: Crashes clicking in the Music
Library list
Product: Wine
Version: 1.1.0
Platform: PC
URL: http://www.sonos.com/support/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dunc(a)dflock.co.uk
Created an attachment (id=14528)
--> (http://bugs.winehq.org/attachment.cgi?id=14528)
Terminal trace of running Sonos Desktop Controller until crash.
When running the Sonos Desktop Controller software, v2.5 - available here:
http://www.sonos.com/support/, clicking around in the Music Library List on the
right hand side causes the software to crash.
Lots of other things also cause this software to crash running under Wine - it
crashes a lot - but this crash is pretty repeatable.
--
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=33061
Bug #: 33061
Summary: Unimplemented function
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andre.rothe(a)phosco.info
Classification: Unclassified
Created attachment 43705
--> http://bugs.winehq.org/attachment.cgi?id=43705
trace information after a crash
I have tried to use a plugin from Garmin (www.garmin.com) which updates the
maps of my Garmin nüvi. The attached trace shows you an unimplemented function
within a DLL.
--
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=30852
Bug #: 30852
Summary: Thunderird upgrade crash
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: schick27(a)gmail.com
Classification: Unclassified
Created attachment 40407
--> http://bugs.winehq.org/attachment.cgi?id=40407
crash report
Upgraded thunderbird portable running on usb drive. It started, then crashed.
It runs fine on Windows. Now will not even open with Wine.
--
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=25966
Summary: AutoCAD 2009: Unimplemented function
msvcp80.dll.??0?$basic_ifstream@DU?$char_traits@D@std@
@@std@@QAE@XZ
Product: Wine
Version: 1.3.12
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=33105)
--> (http://bugs.winehq.org/attachment.cgi?id=33105)
Terminal output on wine-1.3.12-272-g2d6b748
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) wine setup.exe
4) choose "install tools"
Behaviour:
Wine error.
Expected behaviour:
Page with list of tools to install.
Workaround:
winetricks vcrun2005
--
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=29789
Bug #: 29789
Summary: unimplemented function firefox 10
Product: Wine
Version: 1.4-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: guy.roussin(a)teledetection.fr
Classification: Unclassified
Hi,
unimplemented function
msvcp80.dll.??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@XZ called in
32-bit code (0x7b83b9f2).
--
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=29854
Bug #: 29854
Summary: Firefox 10 crash when accessing netflix page which
uses Silverlight
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rblenis(a)gmail.com
Classification: Unclassified
Created attachment 38783
--> http://bugs.winehq.org/attachment.cgi?id=38783
generated backtrace
tried to use netflix. accessedpage and it required silverlight. installed
silverlight and went back to page, causing crash. crash happens every time I
visit that page (or any that requires silverlight?).
--
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=27077
Summary: Need for Speed World needs native msvcp90 (purist)
Product: Wine
Version: 1.3.19
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Launcher is fine, but the real game crashes on entry with
unimplemented function
msvcp90.dll.??0?$basic_ifstream@DU?$char_traits@D@std@@@std@@QAE@XZ
mscodescan.pl lists 90 missing symbols from msvcp90.
--
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=28353
Summary: Total Annihilation crashes on start, needs
msvcp90.dll.??0?$basic_ifstream@DU?$char_traits@D@std@
@@std@@QAE@XZ
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcp
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vhaarr+wine(a)gmail.com
Created an attachment (id=36342)
--> (http://bugs.winehq.org/attachment.cgi?id=36342)
stdout
When I start Total Annihilation it crashes immediately.
This is with wine git compiled with commit 05b2cc19 (todays push) - see bug
27780.
--
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=34252
Bug #: 34252
Summary: Silverlight accelerated graphics cause a D3D critical
section lockup
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: erich.e.hoover(a)gmail.com
Classification: Unclassified
Using Netflix or Maxdome we've* established that the problem with Silverlight 5
is not really a DRM issue (for most sites). The real problem is that there's a
critical section lockup that occurs when Silverlight's hardware acceleration
codepath is used:
err:ntdll:RtlpWaitForCriticalSection section 0xf67e9cb8 "wined3d_main.c:
wined3d_cs" wait timed out in thread 0030, blocked by 0075, retrying (60 sec)
This issue can be worked around by setting the registry key
"HKEY_CURRENT_USER\Software\Microsoft\Silverlight\DisableGPUAcceleration" to a
DWORD value of 1, which will disable the acceleration codepath and allow
Netflix and Maxdome to work with Silverlight 5.x.
I recognize that Netflix and Maxdome currently cannot work in stock Wine, so I
did a little hunting around for a non-PlayReady site where this issue can be
reproduced:
http://playready.directtaps.net/smoothstreaming/TTLSS720VC1/Default.html
Unfortunately, this website needs _one_ patch in order to work with stock wine:
http://source.winehq.org/patches/data/97769
So, I think this establishes that the issue is completely unrelated to the
PlayReady DRM fixes. You should be able to reproduce the issue on other sites
that don't ask for GPU acceleration if you set the "ForceGPUAcceleration"
registry key to a DWORD 1 value, but I'm not familiar with any other
non-PlayReady streaming sites.
* Myself, along with Michael Müller and "slackner" from the pipelight project
(https://answers.launchpad.net/netflix-desktop/+question/233520)
--
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=18642
Summary: Silverlight About Window reports wrong App version
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mellery(a)gmail.com
The Silverlight about window reports the version number as 1.0.0.0, looking at
the about window in Windows it is reported at 2.0.40115.0. It sounds like the
Silverlight installer running in wine might not be writing the correct version
number (and maybe other important keys) to the registry
--
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=18321
Summary: FireFox 3.0.9 + Silverlight 2.0 = Crash
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dave(a)higherform.com
Problem: Firefox 3.0.9 for Windows crashes when attempting to watch a Netflix
movie online.
Steps to reproduce:
Install PlayOnLinux 3.4, Wine 1.1.20
Use PlayOnLinux's install other application feature to create a new wineprefix
and install FireFox 3.0.9 into it
Install Microsoft Fonts into newly created wine prefix
Navigate to
http://www.microsoft.com/express/visual%20Studio%20Control%20TourTestPage.h…
Install Silverlight2.0.exe as prompted
Refresh the page, and after the silverlight file finishes buffering, FireFox
will crash
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=15845
Summary: Silverlight configuration tap "Application storage"
causes freeze
Product: Wine
Version: 1.1.7
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mellery(a)gmail.com
I'm using firefox to test silverlight, I'm streaming live video with it on
mlb.com and its working good, but when I right click on the config options and
select application storage the configuration window freezes and I have to kill
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=18345
Summary: Silverlight 2 installer fails
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://silverlight.net
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=20895)
--> (http://bugs.winehq.org/attachment.cgi?id=20895)
Wine 1.1.20 +file +msi
Although others have had better luck, when I try to install Silverlight 2, the
installer claims to complete successfully, but doesn't do anything.
Tested with latest git and the same.
Tested with 1.1.11 and it installs fine.
Result of bisect:
86af876987a714cbd88b36858178d6ef1a36943e is first bad commit
commit 86af876987a714cbd88b36858178d6ef1a36943e
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Tue Mar 24 10:26:42 2009 +0100
msi: Only apply a transform when its language id matches the system
language id.
Fix for office 2007 sp1 installer.
:040000 040000 7e7d74822b91c0a5981893f375a05c22bb144360
800377a31f6cd5f9f9937cab3db26103ed282bf2 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.
https://bugs.winehq.org/show_bug.cgi?id=41279
Bug ID: 41279
Summary: SonosController6.x crashes when starting
Product: Wine
Version: 1.9.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dbacc(a)posteo.de
Distribution: ---
Installation runs fine however. On AppsDB people seemed to have success with
earlier versions of wine and Ubuntu14.04.
I also tried these versions, but I'm using arch.
--
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=37921
Bug ID: 37921
Summary: Sonos Desktop Controller 5.2
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: richard(a)veffer.net
Distribution: ---
Created attachment 50510
--> https://bugs.winehq.org/attachment.cgi?id=50510
backtrace
I have installed Sonoscontroller 5.2, and it seems to install OK. But then it
crashes when I run it.
I have done: winetricks cc580
The effect is that Sonos doesn crash, but it just doesn start anymore...
The attachment is from before I ran winetricks cc580
SonosDesktopController52.exe
My system runs Linux Mint 17 Cinnamon 32-bit (2.2.16), linux kernel
3.13.0-24-generic.
HW: Intel Core i5-2450M CPU @ 2.50GHZ x 2
Memory: 3.9GB
Graphics Card: Intel 2nd gen
--
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=32328
Bug #: 32328
Summary: Many Silverlight websites loop forever querying the
interface list
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
A lot of Silverlight websites set up a thread that queries the socket option
SIO_ADDRESS_LIST_CHANGE to be informed about changes to the interface list.
Currently these applications loop forever querying SIO_ADDRESS_LIST_CHANGE,
since the overlapped handle gets triggered automatically. At the very least
this routine should not trigger the overlapped handle, but it would be better
to implement this functionality by passing the overlapped handle to one if the
IP helper routines like NotifyAddrChange.
--
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=37621
Bug ID: 37621
Summary: SonosDesktopController51.exe
Product: Wine
Version: 1.4.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: willi.mergener(a)gmail.com
Distribution: ---
Created attachment 50069
--> https://bugs.winehq.org/attachment.cgi?id=50069
Wine backtrace
Install looks ok but Sonos Controller crashes after start with PlayOnLinux
http://update.sonos.com
--
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=33862
Bug #: 33862
Summary: Silverlight crashes while loading Magister
Product: Wine
Version: 1.6-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: therbom(a)gmail.com
Classification: Unclassified
Created attachment 44915
--> http://bugs.winehq.org/attachment.cgi?id=44915
Terminal output
'Magister' is a Silverlight 5 application that is used widely in The
Netherlands as a digital environment for teachers and students in which they
can insert/look up grades, homework, timetables and such.
Unfortunately, Silverlight 5 is required and Moonlight keeps crashing on that.
For that I did the following:
1. I have Ubuntu 12.10 running with wine1.6-rc2 from the ppa
2. I downloaded and installed Firefox 21
3. I downloaded and installed Silverlight 5
4. I opened Firefox and navigated to https://zaamnoord.swp.nl/, the Magister
site of my school
5. The page loads in the beginning for +/- 75%, but then the contents of
Magister are gone and instead you see the previous page again. Here Firefox is
unresponsive but you can close the window.
Please note that I did not use winetricks.
Attached is a log. The line 'fixme:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE
request: stub' was repeated a lot (in fact, I guess 90% of the log contained
that line), so I removed them and replaced them with '(...)'.
--
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=38937
Bug ID: 38937
Summary: Bully: Scholarship Edition crashes on starting a new
game (needs vcomp.dll._vcomp_for_static_simple_init
implementation)
Product: Wine
Version: 1.7.47
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: vcomp
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: sebastian(a)fds-team.de
Distribution: ---
Created attachment 51872
--> https://bugs.winehq.org/attachment.cgi?id=51872
terminal output
Prerequisites: Xaudio2 d3dx9_36 WMP10 devenum quartz
The game loads to the menu but crashes when starting a new game with built-in
vcomp.dll:
>...
>wine: Call from 0x7b839a6c to unimplemented function vcomp.dll._vcomp_for_static_simple_init, aborting
>...
Mscodescan output:
./Bully.exe imports following stub symbols:
vcomp:_vcomp_for_static_end
vcomp:_vcomp_for_static_simple_init
wine-1.7.47-118-ga90592c
--
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=37493
Bug ID: 37493
Summary: Silverlight 5.1 msi installer fails with Wine 1.7.30
Product: Wine
Version: 1.7.30
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: sebastian(a)fds-team.de
Distribution: ---
With Wine 1.7.30 the Silverlight installer fails, it worked well before with
1.7.29. No further patches applied.
Relevant lines in the terminal output:
--- snip ---
err:msi:ACTION_InstallFiles Failed to copy
L"C:\\ee4e8947d8b7676e9d60e43c3f73d4\\PFiles\\Microsoft
Silverlight\\5.1.30514.0\\agcp.exe" to L"C:\\Program Files\\Microsoft
Silverlight\\5.1.30514.0\\agcp.exe" (3)
err:msi:ITERATE_Actions Execution halted, action L"InstallFiles" returned 1603
--- snip ---
Steps to reproduce:
$ wget
http://silverlight.dlservice.microsoft.com/download/F/8/C/F8C0EACB-92D0-472…
$ sha256sum Silverlight.exe
afa7a7081d30b00a4f57c32932bd6d84940bb43b3f5feb0828ff988c80e2d485
Silverlight.exe
$ WINEARCH=win32 WINEPREFIX=~/.wine-silverlight wine Silverlight.exe
Reverting commit 1e3f15d88c1e878f5c459e642ff2079b05aa5c41 makes it work again.
$ git show --stat 1e3f15d88c1e878f5c459e642ff2079b05aa5c41
commit 1e3f15d88c1e878f5c459e642ff2079b05aa5c41
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Tue Oct 21 11:29:08 2014 +0200
msi: Support more transform validation flags.
dlls/msi/msipriv.h | 1 +
dlls/msi/package.c | 2 +-
dlls/msi/patch.c | 215
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------
3 files changed, 191 insertions(+), 27 deletions(-)
--
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=31754
Bug #: 31754
Summary: Full-page Silverlight 5.x on Firefox fails to render
on top of browser elements
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Depends on: 31406
Classification: Unclassified
Regression SHA1: 514eb695846b45c89c0fc0d56653d187f1840eec
Created attachment 41757
--> http://bugs.winehq.org/attachment.cgi?id=41757
Hack to work around rendering issue
Silverlight 5.x appears to use Direct3D for rendering, and for some reason the
full-page windows no longer render on top of the browser window. This is
likely not a regression per se, but since commit
514eb695846b45c89c0fc0d56653d187f1840eec the Silverlight 5.x window can no
longer be seen if it's a full-page application. Examples of this are
applications like Netflix.
Regression test results:
===
514eb695846b45c89c0fc0d56653d187f1840eec is the first bad commit
commit 514eb695846b45c89c0fc0d56653d187f1840eec
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Tue Sep 4 15:03:04 2012 +0200
winex11: Store the rectangle of the GL drawable and use it when updating
the window size.
:040000 040000 c02b6dc1c8940fc75d22753888c3fba415848f38
a5a07991ea9141a1f14275d875f27de77ae54c47 M dlls
===
The attached hack can be used to somewhat work around the issue (the window can
still be occluded, but mousing over elements will bring things back).
--
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=27649
Summary: Silverlight 4 fails to stream Netflix
Product: Wine
Version: 1.3.23
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dimesio(a)earthlink.net
Created an attachment (id=35352)
--> (http://bugs.winehq.org/attachment.cgi?id=35352)
Firefox 5, Silverlight 4 on Netflix
To reproduce:
1. Install Firefox 4 or 5.
2. Use the workaround in http://bugs.winehq.org/show_bug.cgi?id=18345#c23 to
install Silverlight 4.
3. Start Firefox and verify that the Silverlight plugin is listed as installed.
4. Log into Netflix and select something to play.
5. Firefox will seem to hang, but if you wait, a message will load that says
"Thanks for installing. Once installation is complete please restart your
browser to watch this movie."
6. Restarting the browser and attempting to watch the movie gives the same
results.
--
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=30572
Bug #: 30572
Summary: Add support for vectored continue handlers
(AddVectoredContinueHandler,
RemoveVectoredContinueHandler)
Product: Wine
Version: 1.5.3
Platform: x86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
an improvement, might come handy in future.
Newer .NET runtimes (3.x/4.x) and certain applications make use of vectored
continue handlers for better error reporting/diagnosis.
Currently there is no harm if the export is not found in kernel32 (error
reporting using event api):
--- snip ---
003b:Call KERNEL32.GetModuleHandleW(79203ef8 L"kernel32.dll") ret=792a7116
003b:Ret KERNEL32.GetModuleHandleW() retval=7b810000 ret=792a7116
003b:Call KERNEL32.GetProcAddress(7b810000,792a7210
"AddVectoredExceptionHandler") ret=792a712d
003b:Ret KERNEL32.GetProcAddress() retval=7bc21e3c ret=792a712d
003b:Call KERNEL32.GetProcAddress(7b810000,792a71f0
"RemoveVectoredExceptionHandler") ret=792a713a
003b:Ret KERNEL32.GetProcAddress() retval=7bc23534 ret=792a713a
003b:Call KERNEL32.GetProcAddress(7b810000,792a71d4
"AddVectoredContinueHandler") ret=792a7147
003b:Ret KERNEL32.GetProcAddress() retval=00000000 ret=792a7147
003b:Call KERNEL32.GetProcAddress(7b810000,792a71b4
"RemoveVectoredContinueHandler") ret=792a7154
003b:Ret KERNEL32.GetProcAddress() retval=00000000 ret=792a7154
003b:Call ntdll.RtlAddVectoredExceptionHandler(00000001,791f5a7c) ret=792a7182
003b:Ret ntdll.RtlAddVectoredExceptionHandler() retval=001586a0 ret=792a7182
003b:Call KERNEL32.GetModuleHandleW(792083bc L"mscoree.dll") ret=792a7064
003b:Ret KERNEL32.GetModuleHandleW() retval=79000000 ret=792a7064
003b:Call KERNEL32.GetProcAddress(79000000,00000018) ret=792a7086
003b:Ret KERNEL32.GetProcAddress() retval=79008017 ret=792a7086
003b:Call KERNEL32.GetProcAddress(603b0000,00000018) ret=79008056
003b:Ret KERNEL32.GetProcAddress() retval=603b4470 ret=79008056
003b:Call KERNEL32.SetUnhandledExceptionFilter(603e468a) ret=603b4791
003b:Ret KERNEL32.SetUnhandledExceptionFilter() retval=00404395 ret=603b4791
...
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms679273%28v=vs.85%…
(AddVectoredContinueHandler)
http://msdn.microsoft.com/en-us/library/windows/desktop/ms680567%28v=vs.85%…
(RemoveVectoredContinueHandler)
---
Some more information how it works:
Extract from "Chapter 25 - Unhandled Exceptions, Vectored Exception Handling,
and C++ Exceptions"
Windows Via C/C++
by Jeffrey Richter and Christophe Nasarre
Microsoft Press 2008
http://vmg.pp.ua/books/%D0%9A%D0%BE%D0%BF%D1%8C%D1%8E%D1%82%D0%B5%D1%80%D1%…
MSDN blog:
http://blogs.msdn.com/b/zhanli/archive/2010/06/25/c-tips-addvectoredexcepti…
Regards
--
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=32323
Bug #: 32323
Summary: Netflix requires either Arial or Verdana to be
installed
Product: Wine
Version: 1.5.18
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: fonts
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Blocks: 31858
Classification: Unclassified
Without MS true type fonts (specifically, either Arial or Verdana) the Netflix
Silverlight player will fail to load with "Error Code: 1001". By adding either
one of these fonts (or installing all the MS TTF) then the player will load
properly.
--
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=31812
Bug #: 31812
Summary: Silverlight 4.x/5.x windows have repainting problems
Product: Wine
Version: 1.5.13
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
Classification: Unclassified
Regression SHA1: 33ac850c80634c891b0c157bbffa612f70954a40
Created attachment 41860
--> http://bugs.winehq.org/attachment.cgi?id=41860
Screenshot demonstrating the rendering problem
Silverlight windows have a problem repainting since commit
33ac850c80634c891b0c157bbffa612f70954a40 (screenshot attached, not a duplicate
of Bug #31754). The issue can be worked around by setting
ClientSideGraphics="N", but otherwise this issue makes it frustrating to use
Silverlight apps.
--
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=32242
Bug #: 32242
Summary: Silverlight 4.x can no longer install
Product: Wine
Version: 1.5.17
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ehoover(a)mines.edu
CC: hans(a)meelstraat.net
Blocks: 31858
Classification: Unclassified
Regression SHA1: e2900c23c7f0b143078da780c9a0ff19a895bf45
Since commit e2900c23c7f0b143078da780c9a0ff19a895bf45 the Silverlight installer
says that it completes successfully even though no files are installed.
--
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=23461
Summary: Power Point Viewer 2007 Crashes to Open
Product: Wine
Version: 1.2-rc5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpxsat(a)gmail.com
Created an attachment (id=29279)
--> (http://bugs.winehq.org/attachment.cgi?id=29279)
backtrace
A few days back (1.2-rc4 i think) it worked just 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=26472
Summary: Cant open ppt file in MS Power Point Viewer
Product: Wine
Version: 1.3.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ferrazrafael(a)yahoo.com.br
Created an attachment (id=33707)
--> (http://bugs.winehq.org/attachment.cgi?id=33707)
error log
Power Point Viewer doesnt work. (Fedora 14)
--
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=33143
Bug #: 33143
Summary: Power Point Viewer crashed at start
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: nick222(a)yandex.ru
Classification: Unclassified
Created attachment 43847
--> http://bugs.winehq.org/attachment.cgi?id=43847
wine backtrace
Xubuntu 12.10-64 Rus
Wine 1.5.25
Power Point Viewer 2007
When I try to start PPTViewer - it started and open browse-file-window - and
then (in 1-2 seconds) I see wine-window with error-message.
--
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=16530
Summary: Power Point Viewer 2007
Product: Wine
Version: 1.1.10
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amaciel81(a)gmail.com
PowerPoint Viewer 2007 stops to work. There is reports of application working
well in 1.1.5, but don't working in 1.1.8, then, I think this is a severe
regression. Installation is fine, but when I try to execute, the following
message is displayed:
fixme:heap:HeapSetInformation 0x110000 1 (nil) 0
No Window is displayed.
Thanks a lot,
Alexandre
--
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=10820
Summary: Unhandled division by zero in ALSA_AddRingMessage
Product: Wine
Version: 0.9.51.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sarulezzz(a)inbox.ru
Created an attachment (id=9686)
--> (http://bugs.winehq.org/attachment.cgi?id=9686)
dump
Microsoft Office PowerPoint Viewer 2007 randomly crashed with dump (in
attachment). If I set OSS as audio driver in winecfg PowerPoint Viewer works
fine.
--
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=12642
Summary: PowerPoint Viewer 2007 (Polish language version) crashes
on startup
Product: Wine
Version: 0.9.59.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: max.gilead(a)gmail.com
Hi!
Polish language version of PowerPoint Viewer 2007 (downloaded from
http://www.microsoft.com/downloads/details.aspx?displaylang=pl&FamilyID=048…,
size 27099144, MD5 sum 0f2cc7908333ecc2e53025ba4e86eed1) doesn't run on Wine
0.9.59 (installed from Wine repository) on Ubuntu Gutsy. Installation completes
successfully but all I get after trying to run the app is:
$ wine Program\ Files/Microsoft\ Office/Office12/PPTVIEW.EXE
fixme:heap:HeapSetInformation 0x110000 1 (nil) 0
$
Btw, English language version
(http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=048…,
size 27024112, MD5 sum 9b4b476488674ae103d2e97cd88cd222) works fine.
Cheers,
Max
--
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=9936
Summary: Powerpoint Viewer 2007: crashes at start
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mathias.demare(a)gmail.com
Created an attachment (id=8437)
--> (http://bugs.winehq.org/attachment.cgi?id=8437)
The message that appears when trying to run Powerpoint Viewer 2007
When I start Powerpoint Viewer 2007, it crashes immediately (No screen shows
up, it's purely one 'fixme' message on the command line.
--
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=14734
Summary: PowerPoint Viewer 2007: Don't start in Ubuntu Hardy
Product: Wine
Version: 1.1.2
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=048dc840-14e1-467d-8dca-19d2a8fd7485&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pablo.olmosdeaguilera(a)gmail.com
Created an attachment (id=15227)
--> (http://bugs.winehq.org/attachment.cgi?id=15227)
wine PPTVIEW.EXE
When I try to start PowerPoint 2007 (wine PPTVIEW.EXE) it crashes immediatly
giving an one line error (in the 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.
http://bugs.winehq.org/show_bug.cgi?id=22897
Summary: Pradis: incorrect (or scrambled) mouse cursor used
(regression)
Product: Wine
Version: 1.2-rc1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vanoudt(a)gmail.com
CC: julliard(a)winehq.org
With today's git ( ), rather than showing the normal arrow mouse cursor,
Pradis shows a solid black square. Regression testing indicates the following:
-----------------------------
875ca461ae446546d2fa60453c229ed4dd20f185 is the first bad commit
commit 875ca461ae446546d2fa60453c229ed4dd20f185
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri May 21 12:51:14 2010 +0200
winex11: Reimplement creation of Xlib cursors to use the bitmaps returned
by GetIconInfo.
:040000 040000 c20dabc1a7e0fb4caef90335de3d862888c3c805
fb265c3d004b7e1c0b20a5ee1ef5867af387156b M dlls
-----------------------------
Also of note is that rather than showing the black square, commit
875ca461ae446546d2fa60453c229ed4dd20f185 shows the last used mouse cursor.
--
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=23311
Summary: Mouse cursor turns into black rectangle over
PowerPoint Viewer 2007 windows if DCOM98 is installed
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vaidasn(a)gmail.com
Steps to reproduce:
1. Install PowerPoint Viewer 2007
(http://www.microsoft.com/downloads/details.aspx?FamilyID=048dc840-14e1-467d…)
into empty wine prefix.
2. Install DCOM98 using winetricks:
> winetricks dcom98
3. Start PowerPoint Viewer 2007:
> wine 'C:\Program files\Microsoft Office\Office12\PPTVIEW.EXE'
4. Move cursor over PowerPoint Viewer's file choose dialog or any other window.
Mouse cursor turns into black rectangle which is about as twice bigger than the
cursor.
git bisect gave this commit as responsible one for this issue:
e25049e879b5fdbe3fe97d2ff00a64ed79eb3633
winex11: Create X11 cursors on demand when the cursor is set to a window.
--
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=13626
Summary: PowerPoint Viewer 2007: some sounds resembles pig
Product: Wine
Version: 1.0-rc3
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: l.jirkovsky(a)gmail.com
Sound in attached presentation resembles grunting of pig.
--
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=12510
Summary: MS Powerpoint Viewer 2007 crashes when displaying
embedded table
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.microsoft.com/downloads/details.aspx?FamilyId
=048DC840-14E1-467D-8DCA-19D2A8FD7485&displaylang=en
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
powerpoint viewer 97 and 2003 can handle
http://kegel.com/wine/lugradiolive2008/lugradiolive2008.ppt
fine, but powerpoint viewer 2007 crashes when
it gets to the embedded table on page 6
with legend "BUT: market share still tiny!"
--
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=9942
Summary: Powerpoint Viewer 2007 doesn't handle .pptx
Product: Wine
Version: 0.9.46.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Speedator(a)gmx.de
Tried this .pptx for example: "The Next Wave has arrived, but why should you
care?"(http://www.microsoft.com/nz/events/techbrief/agenda.mspx).
It is said that I need the Compatibility pack(which does not make sense,
because this small app is expecially for this file-format and btw. it is not
needed at Windows XP), so I installed
it(http://www.microsoft.com/downloads/details.aspx?familyid=941B3470-3AE9-4…
without an issue.
But it again wants this pack to be installed...
.ppt-files run fine(tested a lot from different office-versions).
The PP Viewer 2007 is installed with Windows XP-settings on gutsy.
--
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=23011
Summary: Powerpoint Viewer shows thing wrong and other files
doesn't open it at all
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpxsat(a)gmail.com
Hi:
I have several files that pptview (the one installed from ubuntu repositories)
shows certain things very very wrong, with wrong spacements, bad characters,
broken links and fails to the background (image).
On the other hand i have other files that pptview can't open at all.
The files are:
The "capitulo 4...ppt" is shown in a bad way
And "ppt_derecho...ppt" is not shown
--
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=19170
Summary: Powerpoint viewer's installer doesn't show success
message at end of install (appinstall)
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://download.microsoft.com/download/a/1/a/a1adc39b-
9827-4c7a-890b-91396aed2b86/ppviewer.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Not a huge deal, but on wine, running 'ppviewer.exe /q' installs powerpoint
silently. Awesome.
So I wrote an ahk script for it, since it's one of the few 'Wine Supported
Applications'. Ran the test script on windows, but it hangs, since at the end
of the install, this message box pops up:
Microsoft Office PowerPoint Viewer 2003 Setup completed successfully.
On wine, of course, we get nothing.
--
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=30203
Bug #: 30203
Summary: Powerpoint Viewer 2010 crashes after opening file
select dialog
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alister.hood(a)gmail.com
CC: wine-bugs(a)winehq.org
Classification: Unclassified
I have an Nvidia MX440 graphics card and am running Arch Linux. I have no idea
if this is a problem with Wine or with the nouveau drivers or something.
When I run MS Powerpoint Viewer 2010, a file select dialog opens for me to
select a powerpoint file, but then it crashes a second or so after the dialog
opens.
This occurs with Wine from current Git, but also with released versions going
back a number of months. I don't know whether there are any previous version
which didn't have the problem.
The backtrace is attached.
Powerpoint Viewer 2007 works 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=33737
Bug #: 33737
Summary: MS Office Power Point Viewer can not start
Product: Wine
Version: 1.5.31
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nick222(a)yandex.ru
Classification: Unclassified
Created attachment 44674
--> http://bugs.winehq.org/attachment.cgi?id=44674
Terminal output
MS Office Power Point Viewer (Office 14) can not start.
See attachment - 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.
https://bugs.winehq.org/show_bug.cgi?id=40533
Bug ID: 40533
Summary: Microsoft PowerPoint Viewer shows error dialog when
clicking System Info button (msinfo32.exe not
implemented)
Product: Wine
Version: 1.9.8
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
To reproduce:
1. Open a presentation.
2. Click the menu in the lower-right corner, then Help, About PowerPoint
Viewer, System Info.
On Windows, a System Information window appears. On Wine, the message "Error
Starting MSINFO32.EXE" appears.
This is the installer I used:
$ sha1sum PowerPointViewer.exe
ab48a8ebac88219c84f293c6c1e81f1a0f420da6 PowerPointViewer.exe
--
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=41430
Bug ID: 41430
Summary: Nothing visibly happns when clicking System Info
button in Microsoft PowerPoint Viewer 14.0
(msinfo32.exe lacks a GUI)
Product: Wine
Version: 1.9.19
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: alexhenrie24(a)gmail.com
Distribution: ---
To reproduce:
1. Open a presentation.
2. Click the menu in the lower-right corner, then Help, About PowerPoint
Viewer, System Info.
On Windows, a System Information window appears. On Wine, the About window
closes but no new window appears.
It would be nice to have msinfo32 at least display an About Wine dialog.
--
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=19171
Summary: Powerpoint viewer's shows weird characters
(appinstall)
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://download.microsoft.com/download/a/1/a/a1adc39b-
9827-4c7a-890b-91396aed2b86/ppviewer.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=22157)
--> (http://bugs.winehq.org/attachment.cgi?id=22157)
powerpoint
Compare screenshots. I'll attach the powerpoint 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=19172
Summary: Powerpoint viewer's installs file in wrong location
(appinstall)
Product: Wine
Version: 1.1.25
Platform: PC
URL: http://download.microsoft.com/download/a/1/a/a1adc39b-
9827-4c7a-890b-91396aed2b86/ppviewer.exe
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Wine:
C:\austin\Application
Data\Microsoft\Installer\{90AF0409-6000-11D3-8CFE-0150048383C9}\ppvwicon.exe
Windows:
C:\Windows\Installer\{90AF0409-6000-11D3-8CFE-0150048383C9}\ppvwicon.exe
SHA1: d3d868146e59ef956922fb11a3ceb94c0991da1b ppvwicon.exe
--
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=45525
Bug ID: 45525
Summary: Heroes 3 Horn of the Abyss crashes on create a host
TCP/IP multiplayer game
Product: Wine
Version: 3.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mo78(a)abv.bg
Distribution: ---
Created attachment 61913
--> https://bugs.winehq.org/attachment.cgi?id=61913
wine.log
Heroes 3 Horn of the Abyss crashes on create a host multiplayer TCP/IP game
with tje last 1.5.3 version. I tried multiple wine versions, including 2.xx to
no avail.
--
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=14659
Summary: Entity properties being switched around to other
entities and not being saved in valve hammer editor v
3.5
Product: Wine
Version: 1.1.2
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leonard.lawton(a)gmail.com
To reproduce in the simplest way:
-create a block - tie to entity funk_breakable(does not really matter)
-create a light entity
-open properties and set the NAME attribute of that block to foo
-set the TARGET ON BREAK attribute to bar
-close the dialog and open the properties for the light
the NAME on the light has taken on the name from the block we just set, and
same thing with the target. doing this in the reverse order yields the same
results. upon saving, these properties don't even seem to be written
--
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=32076
Bug #: 32076
Summary: .NET SqlConnection with windows authentication fails
to connect: cannot initialize SSPI package
Product: Wine
Version: 1.5.16
Platform: x86
URL: http://www.microsoft.com/en-us/download/details.aspx?i
d=8961
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djelinski1(a)gmail.com
Classification: Unclassified
affects any .NET application that tries to connect to SQL server using windows
authentication (e.g. MS SQL Management studio)
Console log contains these 3 lines that are absent when using SQL
authentication:
err:ntdll:NtQueryInformationToken Unhandled Token Information class 11!
fixme:secur32:nego_AcquireCredentialsHandleW forwarding to NTLM
fixme:ntlm:ntlm_AcquireCredentialsHandleW AcquireCredentialsHandle:
SECPKG_CRED_BOTH stub
Windows authentication does not work with wine mono, only with native .NET.
winetricks dotnet20 win7 is needed to install SQL management studio. SQL server
is not needed to reproduce 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=13153
Summary: winex11 regression causes SmartBarXP to close during
startup
Product: Wine
Version: 1.0-rc1
Platform: PC
URL: http://www.majorgeeks.com/SmartBarXP_d4366.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
CC: julliard(a)winehq.org
While trying to test bug 8018, I fetched a copy of SmartBarXP, installed it,
and tried to run it. The profile window opens, but when I try to continue, the
program suddenly quits without any indication of the cause. Since the reporter
of bug 8018 used 0.9.34, I performed a regression test and found the breaking
commit to be:
63dd1a02ca401a7f5045c58317984fe2ee3bb5cb is first bad commit
commit 63dd1a02ca401a7f5045c58317984fe2ee3bb5cb
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Thu Feb 28 17:01:10 2008 +0100
winex11: Merge the iconification support into the SetWindowPos driver
backend.
:040000 040000 1f8297ed2de39bd6e9a126e04cfe3e6993b82235
425d13f0e00d4b48488706e04c7c9b9bfd327ba4 M dlls
Reverting the commit caused the application to start normally.
--
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=44592
Bug ID: 44592
Summary: Arx Fatalis does not run (steam only)
Product: Wine
Version: 3.2
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: wylda(a)volny.cz
Distribution: ---
Created attachment 60577
--> https://bugs.winehq.org/attachment.cgi?id=60577
log with +ddraw
When i try to run Arx Fatalis on Steam (and only on Steam), than message box
appears:
A DDraw object has a non-zero reference count (meaning it was not properly
cleaned up). This Program will now exit.
This happens in Steam prefixes:
- WinXP (32bit)
- Win7 (64bit)
CD version of Arx Fatalis runs OK. Same message appeared in bug 34476.
--
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=10993
Summary: Flash 8 Crashes on Launch - BadAtom
Product: Wine
Version: 0.9.52.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paulw(a)hardmilk.com
Created an attachment (id=9957)
--> (http://bugs.winehq.org/attachment.cgi?id=9957)
Terminal Output when trying to launch Flash
Hi
I've recently installed Flash 8 on my Gentoo install of Wine 0.9.52. Upon
trying to launch it, it will display the startup banner, then instantly exit.
I've used the following methods to try load the program:
Launcher (on Desktop) - env WINEPREFIX="/home/paulw/.wine" wine "C:\Program
Files\Macromedia\Flash 8\Flash.exe"
Run Application - env WINEPREFIX="/home/paulw/.wine" wine "C:\Program
Files\Macromedia\Flash 8\Flash.exe"
and
wine "C:\Program Files\Macromedia\Flash 8\Flash.exe"
and
wine ~/.wine/drive_c/Program\ Files/Macromedia/Flash\ 8/Flash.exe
Aswell as in a terminal by cd'ing to the folder and then launching flash
cd ~/.wine/drive_c/Program\ Files/Macromedia/Flash\ 8/
wine Flash.exe
When running in a Terminal, I get the error attached.
I have tried wiping my Wine installation and re-installing from scratch,
including fresh installs of Flash 8. I also installed Flash 8 through Wine
itself.
As a side note. Dreamweaver 8 works perfectly, it's only Flash which fails to
load at all.
--
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=9767
Summary: Some unicode characters show up as '?' in file selection
dialog
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ncliang(a)gmail.com
To reproduce, create a file with greek characters such as "ΑΒΓΔ.txt".
Run notepad and open the file in the open file dialog.
Observe that the filename shows up as "ΑΒ??.txt" instead of "ΑΒΓΔ.txt".
Lei pointed out that most fonts should have the glyphs needed to display greek
characters, so this is unlikely a font issue....
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=45507
Bug ID: 45507
Summary: Heroes 3 Horn of the Abyss crashes on load game when
Online Lobby is used
Product: Wine
Version: 3.12
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mo78(a)abv.bg
Distribution: ---
Created attachment 61882
--> https://bugs.winehq.org/attachment.cgi?id=61882
wine.log
Heroes 3 Horn of the Abyss crashes on load game when Online Lobby is used. The
game works very well with HD mod except this problem. If you try to load 30
times for example, you may suceed one or two times. In 99% the game crashes.
--
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=45436
Bug ID: 45436
Summary: HoMM 3: Horn of the Abyss severe performance
regression with non GDI mode from HoMM3 HD
Product: Wine
Version: 3.12
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mo78(a)abv.bg
Distribution: ---
There is severe performance regression with non GDI mode with this game, when
HoMM3 HD Launcher is used. The regression occurs both with vanilla and staging
3.xx wine versions. I also tried and PBA to no avail. If I choose 32-bit GDI or
32-bit True (stretchable) GDI, the game running fine. All other modes has slow
performance problems and some of them are very serious - with mouse, scroll and
horse movement lag. I tried Nvidia proprietary driver and Nouveau with the same
result. With Wine 2.21 all is working correct and there isn't performance
problems at all.
--
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=12017
Summary: py2exe fails because fixme:resource:get_resource_section
.rsrc isn't the last section
Product: Wine
Version: 0.9.56.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ahziem1(a)mailbolt.com
If you workaround bug 3591 with an imagehlp.dll override, then you run into
fixme:resource:get_resource_section .rsrc isn't the last section even though
bug 3897 implemented BeginUpdateResource & EndUpdateResource.
py2exe is handy for building Python Windows executables from Linux.
--
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=21555
Summary: Foobar2000 crashes when trying to "open containing
folder" of a file
Product: Wine
Version: 1.1.37
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gibmirspam(a)gmail.com
Created an attachment (id=25969)
--> (http://bugs.winehq.org/attachment.cgi?id=25969)
Output during the crash
Whenever a file in the playlist is right-clicked and the option "open
containing folder" is chosen, Foobar2000 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=28846
Bug #: 28846
Summary: SHELL32.dll.SHOpenFolderAndSelectItems not implemented
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: shell32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: musher(a)mbnet.fi
Classification: Unclassified
Created attachment 37053
--> http://bugs.winehq.org/attachment.cgi?id=37053
Log of the unhandled exception
Music player foobar2000 crashes, reason unknown. It crashes into its own crash
handler, which then crashes wine with unhandled exception when trying to call
SHELL32.dll.SHOpenFolderAndSelectItems.
--
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=18876
Summary: Lightroom 2.3 flipped logos
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://trials.adobe.com/Applications/LTRM/2/LTRM2_WWEF
G_win.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21704)
--> (http://bugs.winehq.org/attachment.cgi?id=21704)
wine-1.1.23-81-g8e0849f console output
Logos in Adobe Lightroom 2.3 appear upside-down.
Console fills with a bunch of gdiplus fixmes.
See attachments.
There are similar bugs open, but it's hard to tell if they're duplicates.
--
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=18641
Summary: Implement GdipCreateHICONFromBitmap
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://trials.adobe.com/Applications/LTRM/2/LTRM2_WWEF
G_win.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21346)
--> (http://bugs.winehq.org/attachment.cgi?id=21346)
wine-1.1.22-86-gbf353f1 console output
Adobe Lightroom 2.3 Demo causes an unhandled exception due to unimplemented
function GdipCreateHICONFromBitmap following installation.
To use the trial, the patch from Bug 14930 must be applied.
http://bugs.winehq.org/attachment.cgi?id=17777
The trial only shows the fault immediately after installation. Subsequent
times it exits silently (which is probably a different bug).
Someone with a full version will have to confirm if this occurs repeatedly for
that.
With native gdiplus, the trial does not show an unhandled exception, and simply
exits silently.
--
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=18654
Summary: Wine uses native gdiplus with Adobe Lightroom 2.3 demo
by default
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://trials.adobe.com/Applications/LTRM/2/LTRM2_WWEF
G_win.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
After installing the Adobe Lightroom 2.3 demo (using
http://bugs.winehq.org/attachment.cgi?id=17777 to work around bug 14930) to a
new wine prefix, a +loaddll log shows:
trace:loaddll:load_native_dll Loaded L"C:\\Program Files\\Adobe\\Adobe
Photoshop Lightroom 2.3\\gdiplus.dll" at 0x4ec50000: native
The native gdiplus has some bugs that Wine can't fix, and we should always
default to builtin.
--
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=25441
Summary: Logos Libronix installer fails with
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dpobanz(a)gmail.com
When trying to install Libronix 3.0g, several "fixme" lines show up and one
error. The error is:
err:richedit:ReadStyleSheet missing style number
If I use winetricks and install riched20, this error goes away.
The installation is a two step process. The first step is to install the "core
installer". For testing, the "core installer" can be downloaded from
http://www.logos.com/support/downloads/ldls/newuser
Tested using wine 1.3.8
Don Pobanz
--
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=44619
Bug ID: 44619
Summary: Multiple 64-bit applications need various Win7+
user-mode scheduling (UMS) API stubs (x64dbg, ACDSee
Pro 9.0)
Product: Wine
Version: 3.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 43351
To work around several 'msvcr120'/'msvcp120' insufficiencies (covered by other
bug reports), both must be still set to 'native' (app provides the runtime
itself in install directory). The UMS API is actually pulled in by native
'msvcr120' - the 'purist' mode is unusable.
A Wine-Staging patchset exists:
https://github.com/wine-staging/wine-staging/blob/master/patches/kernel32-U…
Dmitry says:
--- quote ---
64-bit ACDSee Pro 9.0 on start up queries them with GetProcAddress() and
fails to start if any of these APIs is missing.
--- quote ---
So there is another app requiring these API.
--- snip ---
$ WINEDEBUG=+seh,+relay wine ./x64dbg.exe >>log.txt 2>&1
...
002b:Call KERNEL32.GetModuleHandleW(003b1020 L"kernel32.dll",) ret=00310ab5
002b:Ret KERNEL32.GetModuleHandleW() retval=7b460000 ret=00310ab5
002b:Call KERNEL32.GetProcAddress(7b460000,003b1dd8 "CreateRemoteThreadEx",)
ret=00310ac5
002b:Ret KERNEL32.GetProcAddress() retval=7b46c988 ret=00310ac5
002b:Call KERNEL32.GetModuleHandleW(003b1020 L"kernel32.dll",) ret=00310aeb
002b:Ret KERNEL32.GetModuleHandleW() retval=7b460000 ret=00310aeb
002b:Call KERNEL32.GetProcAddress(7b460000,003b1df0 "CreateUmsCompletionList",)
ret=00310afb
002b:Ret KERNEL32.GetProcAddress() retval=00000000 ret=00310afb
002b:Call KERNEL32.GetLastError() ret=00310e8e
002b:Ret KERNEL32.GetLastError() retval=0000007f ret=00310e8e
002b:Call ntdll.RtlPcToFileHeader(003bd4b8,0023e370,) ret=0034ee94
002b:Ret ntdll.RtlPcToFileHeader() retval=002f0000 ret=0034ee94
002b:Call KERNEL32.RaiseException(e06d7363,00000001,00000004,0023e340,)
ret=0034eed3
002b:trace:seh:NtRaiseException code=e06d7363 flags=1 addr=0x7b490ac8
ip=7b490ac8 tid=002b
002b:trace:seh:NtRaiseException info[0]=0000000019930520
002b:trace:seh:NtRaiseException info[1]=000000000023e4b0
002b:trace:seh:NtRaiseException info[2]=00000000003bd4b8
002b:trace:seh:NtRaiseException info[3]=00000000002f0000
002b:trace:seh:NtRaiseException rax=000000007b473408 rbx=00000000003bd4b8
rcx=000000000023e130 rdx=0000000000000020
002b:trace:seh:NtRaiseException rsi=000000000023e340 rdi=000000000023e150
rbp=000000000023e280 rsp=000000000023e110
002b:trace:seh:NtRaiseException r8=0000000000000004 r9=000000000023e340
r10=0000000000000000 r11=0000000000000000
002b:trace:seh:NtRaiseException r12=0000000000000000 r13=0000000000000000
r14=0000000000000000 r15=0000000000000000
...
--- snip ---
https://sourceforge.net/projects/x64dbg/files/snapshots/snapshot_2017-07-03…
Imports from 'msvcr120':
* CreateUmsCompletionList
* CreateUmsThreadContext
* DeleteProcThreadAttributeList
* DeleteUmsCompletionList
* DeleteUmsThreadContext
* DequeueUmsCompletionListItems
* EnterUmsSchedulingMode
* ExecuteUmsThread
* GetCurrentUmsThread
* GetNextUmsListItem
* GetUmsCompletionListEvent
* InitializeProcThreadAttributeList
* QueryUmsThreadInformation
* SetUmsThreadInformation
* UmsThreadYield
* UpdateProcThreadAttribute
I didn't check how many of these are really needed as pure stubs, semi-stubs,
functional.
$ sha1sum snapshot_2018-01-28_12-18.zip
8ff850f135ff1f3e185c1fd3e1fb2c4de661bd06 snapshot_2018-01-28_12-18.zip
$ du -sh snapshot_2018-01-28_12-18.zip
33M snapshot_2018-01-28_12-18.zip
$ wine --version
wine-3.2-206-g9ae8b8c00f
Regards
--
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=44428
Bug ID: 44428
Summary: x64dbg needs unimplemented function
msvcr120.dll.??0_NonReentrantPPLLock@details@Concurren
cy@@QEAA@XZ
Product: Wine
Version: 3.0
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
follow-up of bug 43538
--- snip ---
$ wine ./x64dbg.exe
002c:fixme:file:FindFirstFileExW flags not implemented 0x00000002
002c:fixme:nls:get_dummy_preferred_ui_language (0x8 0x23f890 0x23f7d0 0x23f898)
returning a dummy value (current locale)
Adjust scroll bars for new size
002c:fixme:file:FindFirstFileExW flags not implemented 0x00000002
wine: Call from 0x7b490a78 to unimplemented function
msvcr120.dll.??0_NonReentrantPPLLock@details@Concurrency@@QEAA@XZ, aborting
...
--- snip ---
'winetricks vcrun2013' works around.
Download:
https://sourceforge.net/projects/x64dbg/files/snapshots/snapshot_2018-01-28…
$ sha1sum snapshot_2018-01-28_12-18.zip
8ff850f135ff1f3e185c1fd3e1fb2c4de661bd06 snapshot_2018-01-28_12-18.zip
$ du -sh snapshot_2018-01-28_12-18.zip
33M snapshot_2018-01-28_12-18.zip
$ wine --version
wine-3.0-180-g85635db0ea
Regards
--
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=43538
Bug ID: 43538
Summary: x64dbg needs unimplemented function
msvcp120.dll.??0_Concurrent_queue_base_v4@details@Conc
urrency@@IAE@I@Z
Product: Wine
Version: 2.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zaplo00(a)mailfence.com
Distribution: ---
Crashes on startup, using Aug 11 2017 snapshot build.
wine: Call from 0x7b43ea34 to unimplemented function
msvcp120.dll.??0_Concurrent_queue_base_v4@details@Concurrency@@IAE@I@Z,
aborting
fixme:dbghelp:elf_search_auxv can't find symbol in module
fixme:dbghelp:fetch_thread_info Couldn't open thread 77 (87)
wine: Unimplemented function
msvcp120.dll.??0_Concurrent_queue_base_v4@details@Concurrency@@IAE@I@Z called
at address 0x7b43ea34 (thread 0009), starting debugger...
Unhandled exception: unimplemented function
msvcp120.dll.??0_Concurrent_queue_base_v4@details@Concurrency@@IAE@I@Z called
in 32-bit code (0x7b43ea34).
--
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=45915
Bug ID: 45915
Summary: Crash when closing x32dbg x64dbg
(msvcr120.dll.??0_Scoped_lock@_NonReentrantPPLLock@det
ails@Concurrency@@QAE@AAV123@@Z)
Product: Wine
Version: 3.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: jimbo1qaz(a)gmail.com
Distribution: ---
Upon closing x32dbg Jun 19 2018, 18:59:42 (a bit old :( ), I get error:
Unhandled exception: unimplemented function
msvcr120.dll.??0_Scoped_lock@_NonReentrantPPLLock@details@Concurrency@@QAE@AAV123@@Z
called in 32-bit code (0x7b43c69c).
Wine 3.16 on Debian 9 Virtualbox VM.
--
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=29349
Bug #: 29349
Summary: Summoner launch screen: corrupted graphics
Product: Wine
Version: 1.3.34
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ftn768(a)gmail.com
Classification: Unclassified
Created attachment 37972
--> http://bugs.winehq.org/attachment.cgi?id=37972
Screenshot of Summoner launch screen
The clickable controls do not line up with the background graphics, see
attached screenshot.
--
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=23002
Summary: Dynamic HTML Editor unusable due to screen refresh
problem
Product: Wine
Version: 1.2-rc2
Platform: x86
URL: http://www.dynamic-html-editor.com/en/download.asp
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dimesio(a)earthlink.net
Depends on: 13516
Created an attachment (id=28506)
--> (http://bugs.winehq.org/attachment.cgi?id=28506)
Screenshot showing refresh problem
The crash at startup of Dynamic HTML Editor has been fixed (bug 13516), but the
app is still unusable due to screen refresh problems. This affects both the
latest version of the app (5.5) as well as the older version (4.3).
Tested in wine-1.2-rc2-91-g4ae5325.
--
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=10785
Summary: Wine 0.9.51 crash when launching Slingplayer v1.5
Product: WineHQ Bugzilla
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: bug list
AssignedTo: jnewman(a)codeweavers.com
ReportedBy: giovanni(a)piccirilli.eu
CC: giovanni(a)piccirilli.eu
Created an attachment (id=9639)
--> (http://bugs.winehq.org/attachment.cgi?id=9639)
Bug report
Hello,
I have tried to run the slingplayer to connect to my slingbox using the
methodology described in http://cyberpunkcafe.com/page.php?74. This produces a
crash of Wine as per attachment.
Note that I am using Ubuntu Gusty 7.10, Wine 0.9.51, Slingplayer as per URL:
http://download.slingmedia.com/player/pc/SlingPlayer_PC_Setup%201.5-UK.exe
Any assistance to get this working is greatly appreciated.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44439
Bug ID: 44439
Summary: Whatsapp installer newest version fails:
System.ArgumentException: WriteEntryTo or
OpenEntryStream can only be called once.
Product: Wine
Version: 2.21
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: ---
Created attachment 60383
--> https://bugs.winehq.org/attachment.cgi?id=60383
last part of consoleoutput
Hi, the newest installer (I don`t know the version, it`s not displayed on the
website) crashes with the attached log, both in staging (2.21) and in current
wine (after using hack to work around bug 40613).
The older installer used to at least install the application fine.
Steps to reproduce:
1. winetricks dotnet462
2. Cd into the directory where the installer resides and do:
/opt/wine-staging/bin/wine runas /trustlevel:0x20000 WhatsAppSetup.exe
sha1sum WhatsAppSetup.exe
39df6c3fd3be3b7ad0898fd9579a638130e5cafc WhatsAppSetup.exe
--
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=13516
Summary: Dynamic HTML Editor 4.2 Demo installs, crashes on
startup
Product: Wine
Version: 1.0-rc2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dimesio(a)earthlink.net
Created an attachment (id=13437)
--> (http://bugs.winehq.org/attachment.cgi?id=13437)
Console log from Dynamic HTML Editor crash
Another user originally posted a question about this in the forum
(http://forum.winehq.org/viewtopic.php?t=1078), though without any console
output. I downloaded the demo from the website
(http://www.dynamic-html-editor.com/en/download.asp), which actually has a
warning on the download page telling Mac and Linux users that they need to use
Virtual PC, VMware, or "another Windows emulator" to run the program. The demo
installs fine. When I tried to run the program, I got an initial screen telling
me this was just a demo, and when I clicked okay, the program crashed. I'm
attaching the console 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=11610
Summary: Microsoft Virtual Earth 3D beta fails to install
Product: Wine
Version: 0.9.55.
Platform: PC
URL: http://www.microsoft.com/Downloads/details.aspx?FamilyID
=e9298080-50c4-4f2e-9fc4-4009074996ba&displaylang=en
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Created an attachment (id=10817)
--> (http://bugs.winehq.org/attachment.cgi?id=10817)
Backtrace in current git
Microsoft Virtual Earth 3D beta fails to install, because of missing gdiplus
functions:
gdiplus.dll.GdipDrawImageRectI
gdiplus.dll.GdipDrawImageRectRectI
gdiplus.dll.GdipDrawLinesI
winetricks gdiplus works around this, then the installer hangs...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=11517
Summary: Microsoft Virtual Earth 3D beta fails to install
Product: Wine
Version: 0.9.54.
Platform: PC
URL: http://www.microsoft.com/Downloads/details.aspx?FamilyID
=e9298080-50c4-4f2e-9fc4-4009074996ba&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
Microsoft Virtual Earth 3D beta fails to install, there is an OLE error and an
X11 bitmap error in the console
--
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=15070
Summary: HxD cant find Internetupdate
Product: Wine
Version: 1.1.3
Platform: PC-x86-64
URL: http://mh-nexus.de/de/hxd
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nerv(a)dawncrow.de
Created an attachment (id=15741)
--> (http://bugs.winehq.org/attachment.cgi?id=15741)
wininet trace
The Function HttpQueryInfoW returns False in Wine with lpdwIndex=1 in XP it
returns True with lpdwIndex=0.
Sample Delphi Code:
HttpQueryInfo(hRequest, HTTP_QUERY_STATUS_CODE, @Result[1], len, dummy)
[len and dummy are 0]
The attachment contains a Trace with WINEDEBUG=wininet and improved
TRACE-Functions by me:
TRACE("(%p, 0x%08x)--> %d with lpdwIndex=%d (Adress) and value=%d\n",
hHttpRequest, dwInfoLevel, dwInfoLevel, lpdwIndex, *lpdwIndex);
--
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=14040
Summary: Microsoft Virtual Earth 3D beta inner installer aborts
when reading registry
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, Installer, patch
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
[Copied from
To get past bugs 11517 and 14035, do 'winetricks gdiplus dotnet20'
(though that might not download the right service pack level of .net?)
Then download VirtualEarth3D.msi from
http://go.microsoft.com/fwlink/?LinkId=106129
and install that instead of the outer installer.
+relay,+msi shows that VirtualEarth3D.msi aborts shortly after
checking for a com object
Anastasius Focht wrote:
the cause of the failure is due to unsupported access flags.
0037:Call advapi32.RegCreateKeyExW(80000000,100138e0
L"CLSID\\{0DB074F0-617E-4EE9-912C-2965CF2AA5A4}\\InprocServer32",00000000,00000000,00000000,000f023f,00000000,7de9685c,7de96860)
ret=1000230d
0037:Ret advapi32.RegCreateKeyExW() retval=00000005 ret=1000230d
0xf023f = KEY_ALL_ACCESS (0xF003F) | KEY_WOW64_32KEY (0x0200)
...
dlls/advapi32/registry.c's KEY_ACCESS_MASK check doesn't include WOW64 flags
yet.
Sure enough, fixing that let the installer finish.
There's no .exe, but the app does create a menu entry
which does
wine "C:\Program Files\Internet Explorer\iexplore.exe"
http://go.microsoft.com/fwlink/?LinkId=75722
(This starts the app ok. It immediately complains
that the web browser isn't supported. If you continue,
it complains
System.Configuration.SettingsPropertyNotFoundException: The settings property
'DetailSetting' was not found.
at System.Configuration.SettingsBase.GetPropertyValueByName(String
propertyName)
at System.Configuration.SettingsBase.get_Item(String propertyName)
and lets you continue in 2D mode. But that's for a different bug report.)
--
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=14035
Summary: Microsoft Virtual Earth 3D beta installer fails to
download .net framework
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.microsoft.com/Downloads/details.aspx?FamilyID
=e9298080-50c4-4f2e-9fc4-4009074996ba&displaylang=en
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
To get past bug 11517, do 'winetricks gdiplus'.
The next problem is it fails downloading .net 2.0 sp1.
The installer offers to show you a log, but can't find the log itself
when you ask; it's really at
~/.wine/dosdevices/c:/windows/temp/VirtualEarth3DInstallLog.txt
and it says
[2008/06/21 12:35:44.709] DownloadManager: HTTP Status String: 'OK' for
'http://go.microsoft.com/fwlink/?LinkId=87970'
[2008/06/21 12:35:44.710] DownloadManager:
HttpQueryInfo(HTTP_QUERY_CONTENT_LENGTH) failed for
'http://go.microsoft.com/fwlink/?LinkId=87970' (System Error Code: 12150
(unknown), WinInet Error Code: 12150 ())
+wininet shows
trace:wininet:HTTP_GetResponseHeaders raw headers: L"HTTP/1.1 200
OK\r\nContent-Length: 24758792\r\nContent-Type:
application/octet-stream\r\nLast-Modified: Thu, 08 Nov 2007 00:36:49
GMT\r\nAccept-Ranges: bytes\r\nETag: \"dfcf19739f21c81:8037\"\r\nServer:
Microsoft-IIS/6.0\r\nX-Powered-By: ASP.NET\r\nDate: Sat, 21 Jun 2008 12:45:10
GMT\r\nConnection: k"...
...
trace:wininet:HttpQueryInfoW Attribute: HTTP_QUERY_CONTENT_LENGTH Modifier:
HTTP_QUERY_FLAG_NUMBER
trace:wininet:HTTP_GetCustomHeaderIndex L"Content-Length"
trace:wininet:HTTP_GetCustomHeaderIndex Return: -1
trace:wininet:HttpQueryInfoW 0 <--
001a:Ret wininet.HttpQueryInfoW() retval=00000000 ret=00404710
So we can't retrieve content-length for some reason, even though we've received
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=34745
Bug #: 34745
Summary: Earth 2150: video sequences aren't played
Product: Wine
Version: 1.7.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugs140(a)gmail.com
Classification: Unclassified
Created attachment 46321
--> http://bugs.winehq.org/attachment.cgi?id=46321
Earth 2150 Log
One can reproduce the problem in the demo (check out the link).
Tested with:
Windows Vista (without Wine), GeForce 9600M GS--the program works fine here
Ubuntu 13.04, GeForce 9600M GS (NVIDIA driver 313)
Mac OS X 10.7.5, ATI HD 2600 Pro, Mac Driver/X11
--
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=29926
Bug #: 29926
Summary: Beach life crashes on initial movie
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: melpomenet2(a)gmail.com
Classification: Unclassified
Created attachment 38944
--> http://bugs.winehq.org/attachment.cgi?id=38944
Wine console output running with vanilla wine.
The game "Beach Life" crashes on the initial movie
(Data/Movies/EidosMovie.mpg).
According to mplayer, the movie codec is MPEG1.
Since the problem seems related to amstream, I tried installing amstream with
winetricks, but still crashes. Attached are logs for running with amstream or
vanilla wine.
--
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=46935
Bug ID: 46935
Summary: AirDC++ (all versions) has display glitches.
Product: Wine
Version: 4.5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: voidrc(a)gmail.com
Distribution: ---
Created attachment 64047
--> https://bugs.winehq.org/attachment.cgi?id=64047
browsing shares.
AirDC++ (all versions from 2014 until now, 32bit and 64) display graphical
glitches in the transfers area and the user share browsing. also some glitches
in the network config display as reported here
(https://bugs.winehq.org/show_bug.cgi?id=45744).
Browsing file shares does not refresh the whole display are when going into a
different folder. Whatever was shown previously remains on the screen unless
there's something to draw over it.
The black area in the transfers goes away if you resize it or if some file
transfers are initiated (it draws over it).
Basically all glitches related to incorrect rendering because of stale
graphical elements not being refreshed properly.
Tested with wine versions as old as 2.x and the bugs are still present.
https://github.com/airdcpp/airgit/releases/download/3.54/airdcpp_3.54_x64.7z
Please test and advise if any tweaking/custom configuration might help.
--
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=44402
Bug ID: 44402
Summary: Shamela3.64 crashes when opening a book in (non-root)
user mode
Product: Wine
Version: 3.0-rc6
Hardware: Other
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: batou.dum(a)free.fr
Distribution: ---
Created attachment 60329
--> https://bugs.winehq.org/attachment.cgi?id=60329
The backtrace followed by a copy of the end of the terminal output
Shamela is an electronic arabic library which downloads packages, imports the
books which are in it and enable the user to read it and make plain-text
searches.
I use it with Linux 4.9.0-5-amd64 under Debian 6.3.0-18.
When I launch it with Wine as a non-root user, it downloads and imports the
books, but if I select a book to read it crashes. I attached the backtrace with
the end of the terminal output. Sometimes it doesn't do anything when I select
the book, but if I try again it crashes.
(It does run well with Wine when I execute it as root, yet it doesn't seems to
me a good idea to do it.)
If you want to install the program, you can download it at :
http://d.shamela.ws/downloads/shamela3.64.rar
Then simply uncompress it and run wine ~/shamela3.64/_shamela.exe.
(If you want a correct arabic display, you can use this tutorial :
https://abuhirr.wordpress.com/2013/12/20/syamilah/. GoogleTranslate from
Indonesian to English works quite fine ! But I don't think it necessary if you
don't read Arabic.)
Look here for the meaning of the icons :
http://uloom.com/edu/mod/page/view.php?id=151.
Normally, when opening the program will open a small window. Click on the right
button. If it doesn't, click on the "upgrade" button (first on the left in the
most recent versions).
Then unselect all the directories (it will take a few seconds if you do it by
unselecting the parent directory), open the first directory, select the first
book and press the right button in the bottom-right corner. When the next
question appears, click on the left button.
When the download ends, wait a little and click on the "Select book" icon
(first on the right). Open the first directory and double-click on the book. If
you are not in root, a window should appear informing you about the error.
Click on the right button in the bottom-left corner to see the backtrace, and
again on the right button to save it.
--
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=42707
Bug ID: 42707
Summary: World of Warships: Cannot display inventory and clan
screens
Product: Wine
Version: 2.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: Andreas.Schallenberg(a)Eurobild.com
Distribution: ---
Created attachment 57682
--> https://bugs.winehq.org/attachment.cgi?id=57682
Backtrace when opening clan screen
WoWS cannot enter Inventory screen or clan screen. When trying, it opens up a
semi-transparent layer with a anchor-symbol with an animation. This step
happens on Windows as well to indicate the loading. Under wine there is no
further progress. In the better case, the screen stays as is forever. In the
worse case (happens most often with inventory) there is a stack backtrace being
displayed. In both cases the user can proceed by closing the semi-transparent
layer.
Environment:
- World of Warships v0.6.2.2 (issue is the same with older versions)
- Wine 2.4 (downloaded from
http://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_Leap_42.…)
- Linux jordan 4.4.49-16-default #1 SMP Sun Feb 19 17:40:35 UTC 2017 (70e9954)
x86_64 x86_64 x86_64 GNU/Linux
--
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=39472
Bug ID: 39472
Summary: World of Warships 0.4.x/0.5.x client runs out of GL
memory after many consecutive games
Product: Wine
Version: 1.7.53
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
by having a large number of consecutive games within same session, the client
will eventually run out of GL memory.
Not sure if this is a Wine bug or a bug in the game engine itself.
It doesn't matter if ARB or GLSL shader backend (default), CSMT or non-CSMT
(default) is used.
Plain Wine and Wine-Staging (for CSMT).
The leak is around 50-70 MB per game so it takes 20-30 games until it becomes
apparent.
When that happens you get strange effects due to failing GL calls.
Console output at the exact point:
--- snip ---
...
0028:err:d3d_texture:texture2d_prepare_texture >>>>>>>>>>>>>>>>>
GL_OUT_OF_MEMORY (0x505) from glTexImage2D @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/texture.c
/ 1000
0028:err:d3d_texture:wined3d_texture_bind >>>>>>>>>>>>>>>>> GL_OUT_OF_MEMORY
(0x505) from glGenTextures @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/texture.c
/ 199
0028:err:d3d_texture:texture2d_prepare_texture >>>>>>>>>>>>>>>>>
GL_OUT_OF_MEMORY (0x505) from glTexImage2D @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/texture.c
/ 1000
0028:err:d3d_surface:wined3d_surface_upload_data >>>>>>>>>>>>>>>>>
GL_INVALID_VALUE (0x501) from glTexSubImage2D @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/surface.c
/ 1732
0028:err:d3d_draw:draw_strided_fast >>>>>>>>>>>>>>>>>
GL_INVALID_FRAMEBUFFER_OPERATION (0x506) from glDrawArrays @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/drawprim.c
/ 91
005a:trace:seh:__regs_MSVCRT__setjmp3 buf=0x2cc5da20 ebx=351af2d0 esi=2f6c5150
edi=351af2a0 ebp=0ea7e928 esp=0ea7e914 eip=00d65da3 frame=0ea7ea48
0028:err:d3d_surface:surface_blt_fbo >>>>>>>>>>>>>>>>>
GL_INVALID_FRAMEBUFFER_OPERATION (0x506) from glReadBuffer() @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/surface.c
/ 1078
0028:err:d3d_draw:draw_strided_fast >>>>>>>>>>>>>>>>>
GL_INVALID_FRAMEBUFFER_OPERATION (0x506) from glDrawArrays @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/drawprim.c
/ 91
0028:err:d3d_texture:texture2d_prepare_texture >>>>>>>>>>>>>>>>>
GL_OUT_OF_MEMORY (0x505) from glTexImage2D @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/texture.c
/ 1000
0028:err:d3d_shader:shader_arb_select >>>>>>>>>>>>>>>>>
GL_INVALID_FRAMEBUFFER_OPERATION (0x506) from
glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, priv->current_fprogram_id); @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/arb_program_shader.c
/ 4692
0028:err:d3d_draw:draw_strided_fast >>>>>>>>>>>>>>>>>
GL_INVALID_FRAMEBUFFER_OPERATION (0x506) from glDrawArrays @
/home/focht/projects/wine/wine.repo/staging-src/dlls/wined3d-csmt/../wined3d/drawprim.c
/ 91
--- snip ---
I continuously monitor the GPU memory usage using 'nvidia−smi' tool from
another terminal:
--- snip ---
$ watch -n2 nvidia-smi
...
Fri Oct 16 18:26:51 2015
+------------------------------------------------------+
| NVIDIA-SMI 352.41 Driver Version: 352.41 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 850M Off | 0000:01:00.0 Off | N/A |
| N/A 50C P8 N/A / N/A | 1385MiB / 2047MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| 0 4151 G /usr/libexec/Xorg 49MiB |
| 0 4485 G ...mes\World_of_Warships\worldofwarships.exe 1325MiB |
+-----------------------------------------------------------------------------+
--- snip ---
Regards
--
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=41314
Bug ID: 41314
Summary: World of Warships (0.5.11) crashes with Critical Error
Occurred
Product: Wine
Version: 1.9.18
Hardware: x86-64
URL: http://worldofwarships.eu/en/game/download/
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 55645
--> https://bugs.winehq.org/attachment.cgi?id=55645
log
Crashes after login with builtin d3dx9_43 dll.
With native dll works fine.
wine-1.9.18-75-g4bfefc5
--
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=43774
Bug ID: 43774
Summary: Chromium-based browser engine (CEFv3) used by several
games crashes on shutdown (World of Warships 0.6.x)
Product: Wine
Version: 2.17
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks
to track https://source.winehq.org/patches/data/137313
--- quote ---
ntdll: Do not queue a completion status if pipe ops fail synchronously.
This fixes random crashes when exiting Chromium or shutting down CEF.
It is similar to 7a1142035d7ee04839417176ff93fd0953e2a4e1, just for pipes.
--- quote ---
Can be reproduced with games that use Chromium/CEFv3 as in-game browser, for
example World of Warships 0.6.x.
In World of Warships 0.6.x switch multiple times between "[Port]" and "[CLAN]"
tabs (CLAN page uses in-game browser) to force a crash.
With the patch applied the crash disappears.
NOTE: Currently Wine-Staging must be used for reproduce because there are still
some patches missing from vanilla Wine
(https://github.com/wine-compholio/wine-staging/tree/master/patches/kernel32…
etc.)
--- snip ---
0x11fc9c62: int $3
Modules:
Module Address Debug info Name (186 modules)
PE 400000- 514000 Deferred cef_browser_process
PE 1c20000- 1c94000 Deferred chrome_elf
PE 10000000-14113000 Export libcef
ELF 7a800000-7a942000 Deferred opengl32<elf>
\-PE 7a840000-7a942000 \ opengl32
ELF 7b400000-7b7f5000 Deferred kernel32<elf>
\-PE 7b420000-7b7f5000 \ kernel32
ELF 7bc00000-7bd15000 Dwarf ntdll<elf>
\-PE 7bc30000-7bd15000 \ ntdll
ELF 7c000000-7c004000 Deferred <wine-loader>
...
0000015f (D) C:\Games\World_of_Warships\cef\cef_browser_process.exe
[C:/Games/World_of_Warships/cef/cef_browser_process.exe
--user-agent="Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/39.0.2171.95 Safari/537.36 WOWS/1.0"
--cache-path="C:/Games/World_of_Warships/profile/cef_cache" --disable-gpu
--disable-gpu-compositing --enable-begin-frame-scheduling --max-frame-rate=30
--log-severity="info" --accept-language-list="en" --id=138]
000001cb 0
...
00000172 0 <==
...
--- snip ---
Disassembly:
--- snip ---
...
11FC9C0D 50 PUSH EAX
11FC9C0E 6A 60 PUSH 60
; ASCII "y:\work\cef3_git\chromium\src\mojo\edk\system\channel_win.cc"
11FC9C10 68 E86E6913 PUSH libcef.13696EE8
11FC9C15 68 286F6913 PUSH libcef.13696F28 ; ASCII "ShutDownImpl"
11FC9C1A 8D4D E0 LEA ECX,DWORD PTR SS:[EBP-20]
11FC9C1D E8 1E1576FE CALL libcef.1072B140
11FC9C22 50 PUSH EAX
11FC9C23 8BCE MOV ECX,ESI
11FC9C25 E8 668176FE CALL libcef.10731D90
11FC9C2A 8D4D FC LEA ECX,DWORD PTR SS:[EBP-4]
11FC9C2D E8 CE290DFE CALL libcef.1009C600
11FC9C32 5E POP ESI
11FC9C33 8BE5 MOV ESP,EBP
11FC9C35 5D POP EBP
11FC9C36 C3 RETN
11FC9C37 55 PUSH EBP
11FC9C38 8BEC MOV EBP,ESP
11FC9C3A 83EC 0C SUB ESP,0C
11FC9C3D 53 PUSH EBX
11FC9C3E 8BD9 MOV EBX,ECX
11FC9C40 8BD3 MOV EDX,EBX
11FC9C42 F7DA NEG EDX
11FC9C44 56 PUSH ESI
11FC9C45 8D43 10 LEA EAX,DWORD PTR DS:[EBX+10]
11FC9C48 1BD2 SBB EDX,EDX
11FC9C4A 23D0 AND EDX,EAX
11FC9C4C 57 PUSH EDI
11FC9C4D 52 PUSH EDX
11FC9C4E E8 1D7A79FE CALL libcef.10761670
11FC9C53 8BC8 MOV ECX,EAX
11FC9C55 E8 367B79FE CALL libcef.10761790
11FC9C5A 8D7B 1C LEA EDI,DWORD PTR DS:[EBX+1C]
11FC9C5D 833F FF CMP DWORD PTR DS:[EDI],-1
11FC9C60 75 01 JNZ SHORT libcef.11FC9C63
11FC9C62 CC INT3 ; triggers CHECK(handle_.is_valid());
11FC9C63 FF37 PUSH DWORD PTR DS:[EDI]
11FC9C65 FF15 E8043513 CALL DWORD PTR DS:[<&KERNEL32.CancelIo>]
11FC9C6B 80BB 85000000 00 CMP BYTE PTR DS:[EBX+85],0
11FC9C72 74 0B JE SHORT libcef.11FC9C7F
...
--- snip ---
https://chromium.googlesource.com/chromium/src/+/refs/heads/master/mojo/edk…
--- snip ---
void ShutDownOnIOThread() {
base::MessageLoop::current()->RemoveDestructionObserver(this);
// BUG(crbug.com/583525): This function is expected to be called once, and
// |handle_| should be valid at this point.
CHECK(handle_.is_valid());
CancelIo(handle_.get().handle);
if (leak_handle_)
ignore_result(handle_.release());
handle_.reset();
// May destroy the |this| if it was the last reference.
self_ = nullptr;
}
--- snip ---
Regards
--
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=43164
Bug ID: 43164
Summary: World of Warships latest update (0.6.6) results in a
critical error on Startup
Product: Wine
Version: 2.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 58419
--> https://bugs.winehq.org/attachment.cgi?id=58419
World Of Warships Error Message
Hello everyone,
this might be related to 41314 and 38233 but I am having trouble of getting the
latest version of "World of Warships 0.6.6" to run. I am attaching a screenshot
of the error message as well as console output.
Installation was done in a fresh prefix with the European installer
$ sha256sum WoWS_internet_install_eu.exe
c59d3ca1b535c6315a71ef2eda045ccc2f8b207183ef4638f66b45c72d66430e
WoWS_internet_install_eu.exe
Report for the AppDB for this latest version has also been written.
Can you take a look into this please?
--
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=38233
Bug ID: 38233
Summary: world of warships
Product: Wine
Version: 1.7.38
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kylewatters1(a)hotmail.com
Distribution: ---
Created attachment 51038
--> https://bugs.winehq.org/attachment.cgi?id=51038
world of warships
tried to use this wine to run the game world of warships and it failed. was the
only version that would let me even get the download to work and install etc.
but when i hit play after all updates etc it crashed.
--
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=39602
Bug ID: 39602
Summary: World of Warships: game launched thow unhandled
exception
Product: Wine
Version: 1.7.53
Hardware: x86
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mazhe(a)alkumuna.eu
Created attachment 52768
--> https://bugs.winehq.org/attachment.cgi?id=52768
Console output
Hi,
I am trying to run the game World of Warships on FreeBSD 10.2 with 32bit wine
version 1.7.53 (not staging).
I followed procedure described on forums to install directx9, wininet and other
dependencies, a procedure that worked on a GNU/Linux (devuan) and a OSX
installations.
On this FreeBSD however, while the initial installer works, the launched that
will then download real game assets and such simply fails with a dialog box
saying:
An unhandled exception is occured. The application will be restarted
With the choice "OK" looping forever with that issue, and "Cancel" exiting. One
more information is that there have been report about trying to enable/disable
torrent download by edition a plain text config file inside the game, but it
did not change anything.
Here is the console output of wine, if somebody could take a look... I don't
see why it's working even on OSX but not FreeBSD...
Thanks
--
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=39565
Bug ID: 39565
Summary: World of Warships: working in GNU/Linux (Devuan), but
not FreeBSD: out of memory?
Product: Wine
Version: 1.7.53
Hardware: x86
OS: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mazhe(a)alkumuna.eu
Created attachment 52713
--> https://bugs.winehq.org/attachment.cgi?id=52713
Application error message
I have been able to install and play the game world of warships on GNU/Linux
(Devuan Linux), but copying the wine prefix, I cannot run it on FreeBSD as I am
getting a "out of memory" message.
This is a bit strange, as I should have plenty available... I am using the
packaged version of wine development version.
I've attached the exact program error message and wine trace, if anybody can
give me pointers...
--
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=39347
Bug ID: 39347
Summary: World of Warships 0.4.x/0.5.x: incorrect water surface
height calculated for unknown reasons, causing ships
to appear floating in the air
Product: Wine
Version: 1.7.51
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Created attachment 52441
--> https://bugs.winehq.org/attachment.cgi?id=52441
focht's nagato "floating" in port after return from game (water surface level
too low)
Hello folks,
that game got me hooked up at bit (= less time on bugs *g*).
Unfortunately I frequently encounter a nasty in-game bug that surfaces after a
certain amount of time/actions.
I created a support ticket at wargaming.net with screenshots along with some
information.
The ticket hang in pending queue for ~1 week only to be answered by a generic
form "please update your graphics drivers". Oh well.
I mentioned this issue during talks with WineD3D folks at WineConf 2015.
It seems this issue was already known to CodeWeavers (Stefan Doesinger, Matteo
Bruni, Caron Wills).
It's not known yet if this is a Wine bug, a bug with the wargaming engine or
graphics drivers.
There was a hint from Caron to try "low" water rendering setting but I figured
out the bug is present there too but much less noticeable (smaller water
surface "drop" value).
It seems I could force the in-game water surface level drop multiple times by
moving the ship near an island/land mass and then zoom in/zoom out with island
in view (couldn't reproduce consistently though).
If the water drop happened once - it stayed forever - even the ships in port
floated in the air.
Exiting and restarting the client solved the issue.
I encountered the bug with WoWS 0.4.0 upgrade for the first time.
Previous 0.3.x version didn't show it but also crashed more frequently hence
there never was a time when the client ran for consecutive (hour long) game
sessions.
I briefly looked at the game engine and found some game engine locations
related to water rending properties along with their float representations.
Since I didn't want to mess up my account by live-debugging/dumping game engine
data (which could be considered hacking) I refrained from doing further
investigation.
A builtin offline simulation mode would have been nice ... but well.
Tested with recent Wine 1.7.5x version.
Graphics used for testing (all exhibit the same problem):
Intel Haswell HD4600 with FOSS Intel/Mesa:
---- snip ---
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) Haswell Mobile
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.6.3
(git-ccef890)
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 10.6.3 (git-ccef890)
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.0 Mesa 10.6.3 (git-ccef890)
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
OpenGL ES profile extensions:
---- snip ---
NVIDIA GeForce GTX 850M, NVIDIA binary drivers (via optimus):
---- snip ---
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce GTX 850M/PCIe/SSE2
OpenGL core profile version string: 4.4.0 NVIDIA 352.21
OpenGL core profile shading language version string: 4.40 NVIDIA via Cg
compiler
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 4.5.0 NVIDIA 352.21
OpenGL shading language version string: 4.50 NVIDIA
OpenGL context flags: (none)
OpenGL profile mask: (none)
OpenGL extensions:
---- snip ---
NVIDIA GeForce GT 425M with FOSS Nouveau/Mesa:
--- snip ---
$ glxinfo | grep -i opengl
OpenGL vendor string: nouveau
OpenGL renderer string: Gallium 0.4 on NVC1
OpenGL core profile version string: 3.3 (Core Profile) Mesa 10.6.3
(git-ccef890)
OpenGL core profile shading language version string: 3.30
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 3.0 Mesa 10.6.3 (git-ccef890)
OpenGL shading language version string: 1.30
OpenGL context flags: (none)
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.0 Mesa 10.6.3 (git-ccef890)
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00
OpenGL ES profile extensions:
--- snip ---
Attached are some screenshots.
Regards
--
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.