https://bugs.winehq.org/show_bug.cgi?id=39213
Bug ID: 39213
Summary: advapi32:security fails if privileges not high enough
Product: Wine
Version: unspecified
Hardware: x86
OS: Windows
Status: NEW
Severity: normal
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
The following failures only happen if the test is run in a regular user account
on old Windows versions, or without elevated privileges on the more recent
ones.
Windows 2000 - Restricted user account
Windows XP - Limited user account
security.c:5888: Test failed: got 5
security.c:5899: Test failed: got 5
security.c:5908: Test failed: got 6
security.c:5919: Test failed: got 6
security.c:5925: Test failed: got 5
security.c:5929: Test failed: got 6
security.c:5940: Test failed: got 5
security.c:5943: Test failed: got 6
security.c:5947: Test failed: got 2
Windows 7 - Administrator account
Windows 7 - Regular user account
security.c:3739: Test failed: MACHINE\Software owner SID != Administrators SID.
security.c:3792: Test failed: Builtin Admins ACE has unexpected flags (0x3 !=
0x0)
plus those below:
Windows 2000 - Standard (Power) user account
security.c:5899: Test failed: got 1314
security.c:5908: Test failed: got 6
security.c:5919: Test failed: got 6
security.c:5929: Test failed: got 1314
Currently these test failures happen on the following WineTest boxes: .
fg-win2000-rusr, fg-win2000-susr, fg-winxp-lusr, fg-win7u64-1spie9adm,
fg-win7u64-1spie9usr.
https://test.winehq.org/data/tests/advapi32:security.html
--
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=37046
Bug ID: 37046
Summary: Roblox Studio cannot load games due to issue in
wininet (trace:wininet:DllMain 0x7dec0000,2,(nil))
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: alfonsojon1997(a)gmail.com
Created attachment 49228
--> http://bugs.winehq.org/attachment.cgi?id=49228
RobloxStudio wininet log
Hi, it seems Roblox Studio cannot load games without using the winetricks
wininet verb (which is bad because it causes a very long hang when loading),
which is slightly frustrating. I've attached an error log which was executed
with the wine debug channels "fixme-d3d,+wininet". Please let me know if any
more information is needed. 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=48785
Bug ID: 48785
Summary: S.T.A.L.K.E.R. Anomaly : lighting problem with
flashlight?
Product: Wine-staging
Version: 5.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: delentef(a)gmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Hello,
I remember playing other STALKER mods 1 ou 2 years ago without problem (on
wine-staging 3.21 IIRC) . But here, with wine-staging 5.3, on Fedora 31, with
NVIDIA drivers 440.64 on a RTX2060, with DXVK 1.5 , I can't get the flashlight
to work: I press the key for the flashlight, I hear its sound, I see a brief
flash but it doesn't light anything after that.
I have tried the rendering modes available to the games: DX8, DX9 , DX10 and
DX11 (); DX10 and DX11 crash with an error in D3DX11GetImageInfoFromMemory /
function CRendeer::texture_load / file ..\xRenderDX10\dx10Texture.cpp for the
ui_font_hud_01.dds file.
DX8 and the various DX9 modes make the game work flawlessly, but I don't have
the flashlight...
I'm no expert at all, but it seems that there was a rendering issue introduced
between the last version of wine 3 and the first version of wine 4, because as
far as I remember it happened at this time. And I had to reinstall wine-staging
3.21 to be able to continue playing because wine-staging 4.0 had this lighting
problem already.
I can attach log files or debug traces if needs be.
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=48777
Bug ID: 48777
Summary: msiexec failure with glibc>=2.31
Product: Wine
Version: 5.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: xantares09(a)hotmail.com
Distribution: ---
on archlinux x86_64, with glibc 2.31, current wine 5.4, msiexec fails with an
error code 67:
cd /tmp && wget http://www.python.org/ftp/python/2.7.16/python-2.7.16.msi &&
WINEARCH=win32 WINEPREFIX=~/.wine_glibc231 msiexec /i python-2.7.16.msi /qb
TARGETDIR=$PWD
0009:err:msi:ACTION_InstallFiles compressed file wasn't installed
(L"w9xpopen.exe")
0009:err:msi:execute_script Execution of script 0 halted; action
L"InstallFiles" returned 1603
0009:err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize"
returned 1603
0009:fixme:msi:internal_ui_handler internal UI not implemented for message
0x0b000000 (UI level = 3)
0009:fixme:msi:internal_ui_handler internal UI not implemented for message
0x0b000000 (UI level = 3)
I bisected the change in glibc to a change related to the futimens function:
https://github.com/bminor/glibc/commit/42893aa38fd6041d349ea0427c4d5ccbacd9…
Is is possible that the 32bits build of wine erroneously call futimens64 ?
If I rollback glibc to 2.30 or patch wine to not use futimens, the problem
disappears:
diff --git a/include/config.h.in b/include/config.h.in
index de434d6..192cbcc 100644
--- a/include/config.h.in
+++ b/include/config.h.in
@@ -210,7 +210,7 @@
#undef HAVE_FT_TRUETYPEENGINETYPE
/* Define to 1 if you have the `futimens' function. */
-#undef HAVE_FUTIMENS
+/*#undef HAVE_FUTIMENS*/
It is used in
https://github.com/wine-mirror/wine/blob/master/dlls/ntdll/file.c#L1914
I cant tell if its a bug in wine or glibc.
An error can also happen if you have a lot of simultaneous wine processes.
--
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=44048
Bug ID: 44048
Summary: Affinity-Designer can't be Installed
Product: Wine
Version: 2.21
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: buliinwhite(a)gmail.com
Distribution: ---
Created attachment 59723
--> https://bugs.winehq.org/attachment.cgi?id=59723
Startet Wine with Debug
I start the Installer .exe and i got following message:
Exception: ResourcesSection::ResourceSection
Software Links:
Affinity Designer
https://affinity.store/download/aea673/
--
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=46725
Bug ID: 46725
Summary: Sniper Elite 3 crashes when using FAudio
Product: Wine
Version: 4.2
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 63696
--> https://bugs.winehq.org/attachment.cgi?id=63696
log
Crashes after around 10 seconds of gameplay.
wine-4.2-195-gf784cabd34
--
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=39623
Bug ID: 39623
Summary: Origin installer crashes wine on "Explain this"
Product: Wine
Version: 1.7.55
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kneekoo(a)yahoo.com
Distribution: ---
Created attachment 52795
--> https://bugs.winehq.org/attachment.cgi?id=52795
Click "Explain this" and it will crash.
Wine crashes when I click "Explain this" in the Origin setup window.
--
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=30422
Bug #: 30422
Summary: IWebBrowser2 ServiceProvider SID_SShellBrowser not
supported
Product: Wine
Version: 1.3.37
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lkcl(a)lkcl.net
Classification: Unclassified
this is for running pyjamas-desktop using wine's native (gecko) MSHTML.DLL
the relevant code is here:
http://pyjs.org/pygit/#file=pyjd/mshtml.py&id=0d4b6787d01c3d90f2c8801c5c4c4…
but the convenient sections which fail (ending with the line that fails) are
replicated here:
SID_SShellBrowser = GUID("{000214E2-0000-0000-C000-000000000046}")
# http://msdn.microsoft.com/en-us/library/aa752126%28VS.85%29.aspx
wba = self.pBrowser.QueryInterface(IServiceProvider)
wn = wrap(wba.QueryService(SID_SShellBrowser, IOleWindow))
#
http://www.mail-archive.com/comtypes-users@lists.sourceforge.net/msg00439.h…
class IServiceProvider(IUnknown):
_iid_ = GUID('{6D5140C1-7436-11CE-8034-00AA006009FA}')
# Overridden QueryService to make it nicer to use (passing it an
# interface and it returns a pointer to that interface)
def QueryService(self, serviceIID, interface):
p = POINTER(interface)()
self._QueryService(byref(serviceIID), byref(interface._iid_), byref(p))
the line that fails is the _QueryService, looking up the IOleWindow interface
on SID_SShellBrowser, as can be seen below by
"fixme:ieframe:WebBrowser_QueryInterface".
fixme:atl:OleInPlaceFrame_SetStatusText (0x133280, L"Downloading about:blank")
- stub
fixme:iphlpapi:NotifyAddrChange (Handle 0x61ce8fc, overlapped 0x61ce8e0): stub
err:ole:CoGetClassObject class {591209c7-767b-42b2-9fba-44ee4615f2c7} not
registered
err:ole:CoGetClassObject class {591209c7-767b-42b2-9fba-44ee4615f2c7} not
registered
err:ole:CoGetClassObject no class object {591209c7-767b-42b2-9fba-44ee4615f2c7}
could be created for context 0x3
fixme:ieframe:ClOleCommandTarget_QueryStatus (0x132ff4)->((null) 1 0x42a220
(nil))
fixme:ieframe:ClOleCommandTarget_QueryStatus command_0: 27, 0x0
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 25
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 26
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented group
{000214d1-0000-0000-c000-000000000046}
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ieframe:ClientSite_GetContainer (0x132ff4)->(0x42a230)
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented group
{000214d1-0000-0000-c000-000000000046}
fixme:atl:OleInPlaceFrame_SetStatusText (0x133280, L"") - stub
fixme:atl:OleInPlaceFrame_EnableModeless (0x133280, 1) - stub
fixme:ieframe:ClientSite_GetContainer (0x132ff4)->(0x42d070)
fixme:imm:ImmReleaseContext (0x1006e, 0x515df48): stub
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 25
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 26
fixme:ieframe:ProvideClassInfo_GetClassInfo (0x132f40)->(0x30a7af8)
fixme:ieframe:WebBrowser_QueryInterface
(0x132f40)->({df0b3d60-548f-101b-8e65-08002b2bd119} 0x42f2fc) interface not
supported
fixme:ieframe:WebBrowser_put_RegisterAsBrowser (0x132f40)->(ffffffff)
fixme:win:EnumDisplayDevicesW ((null),0,0x42e410,0x00000000), stub!
fixme:ieframe:WBServiceProvider_QueryService
(0x132f40)->({000214e2-0000-0000-c000-000000000046},
{00000114-0000-0000-c000-000000000046} 0x30db0f8)
fixme:ieframe:WebBrowser_QueryInterface
(0x132f40)->({df0b3d60-548f-101b-8e65-08002b2bd119} 0x42f60c) interface not
supported
Traceback (most recent call last):
File "Hello.py", line 15, in <module>
pyjd.setup("public/Hello.html?fred=foo#me")
File "C:\python26\lib\site-packages\pyjd\__init__.py", line 76, in setup
_setup(*args, **kwargs)
File "C:\python26\lib\site-packages\pyjd\mshtml.py", line 472, in setup
wv.load_app()
File "C:\python26\lib\site-packages\pyjd\mshtml.py", line 293, in load_app
wn = wrap(wba.QueryService(SID_SShellBrowser, IOleWindow))
File "C:\python26\lib\site-packages\pyjd\mshtml.py", line 113, in
QueryService
self._QueryService(byref(serviceIID), byref(interface._iid_), byref(p))
_ctypes.COMError: (-2147467262, None, (None, None, None, 0, None))
--
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=22458
Summary: Word 2007: Impossible to insert symbol by clicking on
its center
Product: Wine
Version: 1.1.43
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=27508)
--> (http://bugs.winehq.org/attachment.cgi?id=27508)
Image showing the problem
Steps to reproduce:
1) Start Word 2007
2) Insert->Equation
Try to insert "less than" symbol by clicking on its center. Symbol will get
bigger as you hover over it but when you click on it, it won't be inserted in
the page.
To insert symbol you have to click on it's border like I showed in attachment
(lower image).
On upper image in attachment I also showed situation where symbol should be
inserted but it isn't.
--
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.