https://bugs.winehq.org/show_bug.cgi?id=35892
Bug ID: 35892
Summary: sdb2xml (.NET 2.0 app) crashes on unimplemented
function apphelp.dll.SdbGetAppPatchDir
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says.
Prerequisite: 'winetricks -q dotnet20' (Mono might work too, couldn't test)
('foo' doesn't exist)
--- snip ---
$ wine ./sdb2xml.exe foo
fixme:thread:SetThreadStackGuarantee (0x33fc28): stub
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse L"System.Xml"
wine: Call from 0x7b83abc3 to unimplemented function
apphelp.dll.SdbGetAppPatchDir, aborting
Error: External component has thrown an exception.
fixme:process:FlushProcessWriteBuffers : stub
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/bb432442%28v=vs.85%29.aspx
--- quote ---
void WINAPI SdbGetAppPatchDir(
_In_opt_ HSDB hSDB,
_Out_ LPTSTR szAppPatchPath,
_In_ DWORD cchSize
);
Parameters
hSDB [in, optional]
A handle to the shim database returned by the SdbInitDatabase function.
szAppPatchPath [out]
The resulting path.
cchSize [in]
The size of the szAppPatchPath buffer, in characters. If the function
fails, this parameter is set to the empty string ("").
--- quote ---
The documentation doesn't live up to the standards.
Vista+ API with no ANSI version of the API but they still state 'LPTSTR' type?
$ sha1sum sdb2xml.exe
9808bc17a7ea4f43ecdcb11f4e18204805246dbd sdb2xml.exe
$ du -sh sdb2xml.exe
28K sdb2xml.exe
$ wine --version
wine-1.7.15-112-g2aad5d7
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=35891
Bug ID: 35891
Summary: sdb2xml and native setupapi override crash on
unimplemented function apphelp.dll.SdbInitDatabase
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
encountered by Austin's tests with native overrides
(https://bugs.winehq.org/show_bug.cgi?id=26016#c20):
--- quote ---
and crashes with:
wine: Call from 0x7b83a82e to unimplemented function
apphelp.dll.SdbInitDatabase, aborting
if I stub that, it gets further, to SCECLI.dll.SceSetupMoveSecurityFile. That
function doesn't appear to be documented, howver, so I didn't try to do
anything with it. (that's for ie7)
xmllite installs with no issues with native setupapi after SdbInitDatabase was
stubbed. Running it now in a loop.
--- quote ---
I found another interesting tool which makes use of Application Compatibility
Database API's too: 'sdb2xml'
MSDN: http://blogs.msdn.com/b/heaths/archive/2007/11/02/sdb2xml.aspx
$ sha1sum sdb2xml.exe
9808bc17a7ea4f43ecdcb11f4e18204805246dbd sdb2xml.exe
$ du -sh sdb2xml.exe
28K sdb2xml.exe
$ wine --version
wine-1.7.15-112-g2aad5d7
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=38017
Bug ID: 38017
Summary: sdb2xml (.NET 2.0 app) crashes on unimplemented
function apphelp.dll.SdbGetFirstChild
Product: Wine
Version: 1.7.35
Hardware: x86
URL: http://blogs.msdn.com/b/heaths/archive/2007/11/02/sdb2
xml.aspx
OS: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: austinenglish(a)gmail.com, focht(a)gmx.net
Depends on: 35893
Distribution: ---
Followup to bug 35893
Created a dummy file:
--- snip ---
$ touch foo.sdb
--- snip ---
Run the app:
--- snip ---
$ wine ./sdb2xml.exe foo.sdb
fixme:apphelp:SdbOpenDatabase stub: L"foo.sdb" 00000000
<?xml version="1.0" encoding="IBM437" standalone="yes"?>
<SDB xmlns:xs="http://www.w3.org/2001/XMLSchema" path="foo.sdb"wine: Call from
0x7b83957c to unimplemented function apphelp.dll.SdbGetFirstChild, aborting
--
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=35893
Bug ID: 35893
Summary: sdb2xml (.NET 2.0 app) crashes on unimplemented
function apphelp.dll.SdbOpenDatabase
Product: Wine
Version: 1.7.15
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says.
Prerequisite: 'winetricks -q dotnet20' (Mono might work too, couldn't test)
Created a dummy file:
--- snip ---
$ touch foo.sdb
--- snip ---
Run the app:
--- snip ---
$ wine ./sdb2xml.exe foo.sdb
fixme:thread:SetThreadStackGuarantee (0x33fc28): stub
fixme:shell:URL_ParseUrl failed to parse L"System"
fixme:shell:URL_ParseUrl failed to parse L"System.Xml"
wine: Call from 0x7b83abc3 to unimplemented function
apphelp.dll.SdbOpenDatabase, aborting
Error: External component has thrown an exception.
fixme:process:FlushProcessWriteBuffers : stub
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/bb432457%28v=vs.85%29.aspx
--- quote ---
PDB WINAPI SdbOpenDatabase(
_In_ LPCTSTR pwszPath,
_In_ PATH_TYPE eType
);
Parameters
pwszPath [in]
The database path. This parameter cannot be NULL.
eType [in]
The path type. See PATH_TYPE for a list of values.
--- quote ---
There is no ANSI version here, LPCTSTR will be always mapped to LPCWSTR.
Interestingly there seem to be two API functions essentially doing the same:
SdbOpenDatabase -> Windows Vista+, returns 'PDB'
SdbInitDatabase -> Windows XP+, returns 'HSDB'
$ sha1sum sdb2xml.exe
9808bc17a7ea4f43ecdcb11f4e18204805246dbd sdb2xml.exe
$ du -sh sdb2xml.exe
28K sdb2xml.exe
$ wine --version
wine-1.7.15-112-g2aad5d7
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.
http://bugs.winehq.org/show_bug.cgi?id=27944
Summary: DVR CMS SW freezes
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: maurelioc(a)astrotec.com.br
The SW attached is a CMS for controlling and viewing images on a DVR (Digital
Video Recording). This type of equipment is very common now in video
surveillance.
The DVRs maybe operated/viewed from a SW in cellular phones, Internet Explorer
with an activex loaded from the DVR and from installable SW called CMS for
Windows OS.
I would apreciate if someone could make it run on Wine.
It installs without error , but when trying to execute the SW freezes.
I can make available a DVR with cameras connected to internet to make tests.
There are other packages to convert videos, play videos , install activex etc.
All chinese made and with minimum documentation. I may send if needed or asked.
Thanks.
Marco Aurelio
--
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=34910
Bug #: 34910
Summary: WinLaunch 0.4.6.1 (OSX Style free Launcher) complains
about missing "%USERPROFILE%\\Application
Data\\Microsoft\\Windows\\Themes\\" directory
Product: Wine
Version: 1.7.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says.
Prerequisite: 'winetricks -q dotnet40'
On startup the app displays a message box, stating:
"The directory name C:\\users\\focht\\Application
Data\\Microsoft\\Windows\\Themes\\ is invalid."
It's not serious because you can dismiss the dialog and the app continues to
load.
It seems the folder is present by default within user profile:
http://answers.microsoft.com/en-us/windows/forum/windows_xp-files/all-progr…
--- snip ---
C:\Documents and Settings\Administrator\
..\Desktop
..\Favorites
..\My Documents
..\Start Menu
..\Application Data\Identities
..\Application Data\Identities\{098F3D97-B586-4AAD-812D-38C050112199}
..\Application Data\Microsoft\Internet Explorer
..\Application Data\Microsoft\Media Player
..\Application Data\Microsoft\Windows
..\Application Data\Microsoft\Windows\Themes
..\Application Data\Microsoft\Windows\Themes\Custom.theme
--- snip ---
You can work around by creating the directory:
--- snip ---
$ wine cmd.exe /c mkdir "%USERPROFILE%\\Application
Data\\Microsoft\\Windows\\Themes"
--- snip ---
$ sha1sum WinLaunch.zip
5d79fb1d160354a04548fc7bba1a78012800c59c WinLaunch.zip
$ du -sh WinLaunch.zip
20M WinLaunch.zip
$ wine --version
wine-1.7.6-225-g8c8d5a0
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.
https://bugs.winehq.org/show_bug.cgi?id=40734
Bug ID: 40734
Summary: Unreal Tournament 3 doesn't quit properly when
Pulseaudio is used
Product: Wine
Version: 1.9.11
Hardware: x86
URL: http://www.gamershell.com/download_21427.shtml
OS: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: winepulse.drv
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
When Pulseaudio is used by Wine, UT3.exe remains in the process list after
quitting the game. It uses 0% cpu but doesn't free up some 150-200 MB RAM, and
needs to be killed.
The game exits properly when Wine was compiled without Pulse support so that it
uses ALSA on my system.
Plain terminal output doesn't show anything interesting.
This can be reproduced with the demo version too:
Install the demo and launch UT3Demo.exe, create a profile and select <Play
Offline>. Select <Exit> from the main menu, click <Exit> again on the splash
screen --> UT3Demo.exe remains in the memory.
UT3BetaDemo.zip (742M)
sha1: 0ba7307daf9c21ec7349f9a673b2328d112c4eb9
wine-1.9.11-112-gd864119
Fedora 23 32-bit
Pulseaudio 7.1
--
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=38207
Bug ID: 38207
Summary: Unreal Tournament 3 uninstaller fails when invoking
from 'wine uninstaller' (removes wrong entries)
Product: Wine
Version: 1.7.38
Hardware: x86
URL: http://www.gamershell.com/download_21427.shtml
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51002
--> https://bugs.winehq.org/attachment.cgi?id=51002
terminal output
Steps to reproduce the problem with UT 3 Beta Demo:
1. download and install UT 3 Beta Demo (link provided in URL, installation
takes some time, also installs Physx).
2. when installation is finished close the installer and launch 'wine
uninstaller'
3. for me there are 4 entries in the uninstaller: Ageia Physx, UT 3 Demo, Wine
Gecko and Wine Mono.
4. click on the UT 3 demo entry and select remove-> Gecko is removed instead of
the game.
click on the game entry again and select <Remove> -> Ageia Physx is removed
repeat the same..this time Wine Mono is removed.
Only the game remains in the list and it can be removed finally.
The same problem in Wine 1.4/1.6/1.7.38
wine-1.7.38-34-g11b4200
Fedora 21
--
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=37494
Bug ID: 37494
Summary: Quicken 2014 - Crashes when application starts up
(after working around Promon Shield)
Product: Wine
Version: 1.7.30
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sebastian(a)fds-team.de
Distribution: ---
Steps to reproduce:
Install dotnet40 (via winetricks).
Afterwards run the Quicken 2014 main installer. Starting the application will
fail with "Quicken 2014 konnte nicht gestartet werden! (Fehler: 0x0000054f)".
That is caused by Promon Shield SDK (bug 37449, bug 37487, bug 37488, ...) and
very difficult to solve, so we disable it for now. Just append
--- snip ---
[DEBUG]
PROMONSHIELD=0
--- snip ---
at the end of (put in your $WINEPREFIX)
$WINEPREFIX/drive_c/users/Public/Application\
Data/Lexware/Quicken/2014/QUICKEN.INI
And the main application (QwStart.exe) will start. After clicking away the
first messagebox (which just says that the application will only run for a
limited time) a short sound plays, and another message box pops up saying
"Allgemeiner Fehler" (= general error). Then the whole application crashes
(including the wine debugger).
Last lines from the terminal output:
--- snip ---
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"LxContextHelpSrv20" (10.0.0.0)
fixme:thread:GetThreadPreferredUILanguages 52, 0x33f548, 0x33f5b8 0x33f550
fixme:advapi:GetCurrentHwProfileA (0x33a3e4) semi-stub
fixme:thread:GetThreadPreferredUILanguages 52, 0x33dae4, 0x33db54 0x33daec
fixme:thread:GetThreadPreferredUILanguages 52, 0x33db58, 0x33dbc8 0x33db60
fixme:thread:SetThreadStackGuarantee (0x33e3ec): stub
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
apartment threaded to multi-threaded
err:ole:CoGetContextToken apartment not initialised
fixme:shell:URL_ParseUrl failed to parse L"DotNetConnect"
fixme:thread:GetThreadPreferredUILanguages 52, 0x33ceb8, 0x33cf28 0x33cec0
fixme:shell:URL_ParseUrl failed to parse L"Lexware.Quicken.DotNetControls"
err:ole:CoInitializeEx Attempt to change threading model of this apartment from
multi-threaded to apartment threaded
fixme:thread:GetThreadPreferredUILanguages 52, 0x33e44c, 0x33e4bc 0x33e454
fixme:msxml:domdoc_get_parseError (0x164718)->(0x33ebc8): creating a dummy
parseError
wine: Unhandled exception 0xc015000f in thread 2a at address 0x7bc42362 (thread
002a), starting debugger...
Can't attach process 0029: error 5
--- snip ---
Installing msxml3 via winetricks doesn't help.
$ du -sh Quicken_2014tb.exe
319M Quicken_2014tb.exe
$ sha1sum Quicken_2014tb.exe
2374d907e2ee568f1f93dba48afd602723dcad6f Quicken_2014tb.exe
$ git describe
wine-1.7.30
--
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.