http://bugs.winehq.org/show_bug.cgi?id=7690
------- Additional Comments From dank(a)kegel.com 2007-24-03 20:47 -------
Hmm. Setting winver to winxp gets around most
installer problems, but there's one left:
near the end, a dialog pops up saying it
couldn't set up the data source hoai_access.
This happens whether or not I set the registry
to override odbc32 and odbccp32 before starting the install.
And when it starts up, it still says
"Lizenzdatenbank nicht vorhanden!".
So I guess something's still missing...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7825
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From truiken(a)gmail.com 2007-24-03 20:17 -------
Invalid...I should have looked at the version used. Please update to the latest
release. It works fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7834
------- Additional Comments From focht(a)gmx.net 2007-24-03 20:08 -------
Hello,
some addendum...
Apply *exact* key comparison only at last child/node level or child walk wont work.
Sample code how this could be accomplished...
---- snip dlls/version/info.c ---
static VS_VERSION_INFO_STRUCT32 *VersionInfo32_FindChild(
VS_VERSION_INFO_STRUCT32 *info, LPCWSTR szKey, UINT cbKey )
{
VS_VERSION_INFO_STRUCT32 *child = VersionInfo32_Children( info );
BOOL lastChildLevel = (strchrW( szKey, '\\') == NULL);
while ((char *)child < (char *)info + info->wLength )
{
if( lastChildLevel)
{
if( !strcmpiW( child->szKey, szKey))
return child;
}
else if( !strncmpiW( child->szKey, szKey, cbKey))
return child;
child = VersionInfo32_Next( child );
}
return NULL;
}
---- snip dlls/version/info.c ---
The code changes seem to work with this app.
At least it starts now and shows main window.
For other issues feel free to post...
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7846
Summary: Counter Strike 1.6 : Sound desync
Product: Wine
Version: 0.9.33.
Platform: PC
URL: http://appdb.winehq.org/appview.php?appId=871
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ekarissor88(a)gmail.com
Using default OpenGL engine and sound defaults with OSS, there is a sound
desynchonisation in CS 1.6.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4513
jeremielapuree(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From jeremielapuree(a)yahoo.fr 2007-24-03 18:31 -------
Bug still occurs for me.
The output changed
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7704
------- Additional Comments From truiken(a)gmail.com 2007-24-03 18:27 -------
The log says (I've only looked at the first file, ac1st16.dll) that ac1st16.dll
was installed to c:\\Program Files\\Common Files\\Autodesk Shared\\ac1st16.dll.
Are you sure it's not there after the install?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7834
------- Additional Comments From focht(a)gmx.net 2007-24-03 17:21 -------
Hello,
good one :)
--- snip ---
0012:Call version.VerQueryValueA(001989c0,612af0e0
"\\StringFileInfo\\040904b0\\Internal",0034ef48,0034ef4c) ret=612a943e
..
0012:Call kernel32.WideCharToMultiByte(00000000,00000000,00198b54
L"ALBUM",ffffffff,001999b0,00000cc4,00000000,00000000) ret=6076b5d8
--- snip ---
In short: it reads a value from PE resource where it shouldnt.
There is a "helper" dll (u32cfg.dll) which implements its own kind of
"GetModuleInfo" by reading version resource and parsing the all stuff.
Ulead packs lots of non-standard stuff in its PE version resource.
I left only interesting part:
--- snip version resource ---
PRODUCTVERSION 3,0,0,0
FILEOS 0x4
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "040904b0"
{
.....
VALUE "InternalName", "ALBUM"
.....
VALUE "Section", "Album 12"
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409 0x04B0
}
}
--- snip version resource ---
The problem lies in wine's VersionInfo32_QueryValue() ->
VersionInfo32_FindChild() -> strncmpiw() when a subblock key is supplied that
matches a *part* of resource key.
Now what happens ... due to partial string match of "Internal" ->
"InternalName", the value "ALBUM" is returned.
"Internal" has a special meaning to ulead software: the helper dll expects some
kind of GUID "{xxxx}" when parsing the value for this key.
It doesnt meet the expected format -> error msgbox.
So the fix would be using *exact* string match in VersionInfo32_FindChild().
This is cleanly a wine bug, yes.
---
BTW ... someone could add 2-byte opcode 0xFF,0x15,<addr32> (call dword ptr) insn
to the wine debugger ("programs/winedbg/be_i386.c:be_i386_is_func_call()")
After using attach i encountered lots of this stuff in debuggee (uses calls to
IAT, e.g. call dword ptr ds:[some_iat_entry])...
Makes it somewhat harder debug if call destinations (dll imports) are not
recognized correctly.
Regards
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=7845
Summary: CrazyTalk crashes
Product: Wine
Version: CVS
Platform: Other
URL: http://www.download.com/CrazyTalk-Media-Studio/3000-
2194_4-10557201.html?tag=lst-0-1
OS/Version: Linux
Status: UNCONFIRMED
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
The application crashes immediately. It's a regression betwee wine-0.9.22 and 0.9.24
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.