https://bugs.winehq.org/show_bug.cgi?id=35794
Bug ID: 35794
Summary: iTunes 7 installer aborts early (failure to find
builtin 'RegExp' class)
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
continuation of bug 34154
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+vbscript,+ole,+variant wine ./iTunesSetup7.exe
>>log.txt 2>&1
...
002f:trace:vbscript:disp_get_id using IDispatch
002f:trace:ole:ITypeInfo_fnGetIDsOfNames (0x1daf30) Name L"CompareVersions"
cNames 1
...
002f:warn:ole:ITypeInfo_fnGetIDsOfNames no names found
002f:fixme:msi:AutomationObject_GetIDsOfNames Unknown member
L"CompareVersions", clsid {000c109e-0000-0000-c000-000000000046}
...
002f:trace:vbscript:interp_errmode 1
002f:trace:vbscript:interp_new L"RegExp"
002f:fixme:vbscript:interp_new Class L"RegExp" not found
002f:fixme:vbscript:exec_script Failed 80004005 in resume next mode
...
002d:err:msi:ITERATE_Actions Execution halted, action L"iTunesLaunchConditions"
returned 1603
--- snip ---
Relevant VBScript code snippet:
--- snip ---
...
Sub iTunesLaunchConditions
PreventDowngrade
DetectGEARDriverSetDeletion
CheckUnsupportediPodSoftware
End Sub
Function CompareVersions(sVersion1, sVersion2)
Dim rgExpVersionComponents
Dim oMatches1, oMatches2
Dim iVersion1, iVersion2
Dim i
On Error Resume Next
Set rgExpVersionComponents = New RegExp
rgExpVersionComponents.Pattern = "(\d+)\.?"
rgExpVersionComponents.Global= True
Set oMatches1 = rgExpVersionComponents.Execute(sVersion1)
Set oMatches2 = rgExpVersionComponents.Execute(sVersion2)
i = 0
Do
Err.Clear
iVersion1 = 0
iVersion2 = 0
iVersion1 = CInt(oMatches1(i).SubMatches(0))
iVersion2 = CInt(oMatches2(i).SubMatches(0))
If iVersion1 < iVersion2 Then
CompareVersions = -1
Exit Function
ElseIf iVersion1 > iVersion2 Then
CompareVersions = 1
Exit Function
End If
i = i + 1
Loop While Err.number = 0
CompareVersions = 0
End Function
Sub PreventDowngrade
Const msiInstallStateAdvertised = 1
Dim Installer
Dim RelatedProducts
Dim UpgradeCode
Dim ProductCode
Dim ProductVersion
Dim ProductVersionMax
Dim ProductVersionFound
On Error Resume Next
Set Installer = Session.Installer
ProductVersion = Session.Property("ProductVersion")
ProductVersionMax = ""
UpgradeCode = Session.Property("UpgradeCode")
Set RelatedProducts = Installer.RelatedProducts(UpgradeCode)
For Each ProductCode in RelatedProducts
If Installer.ProductState(ProductCode) = msiInstallStateAdvertised Then
ProductVersionFound = Installer.ProductInfo(ProductCode, "Version")
Else
Err.Clear : ProductVersionFound =
Installer.ProductInfo(ProductCode, "VersionString")
If Err.number <> 0 Then ProductVersionFound = ""
End If
If CompareVersions(ProductVersionFound, ProductVersionMax) > 0 Then
ProductVersionMax = ProductVersionFound
Next
If CompareVersions(ProductVersionMax, ProductVersion) > 0 Then
Session.Property("BNEWERITUNESISINSTALLED") = "1"
Else
Session.Property("BNEWERITUNESISINSTALLED") = ""
End If
End Sub
...
--- snip ---
-> 'Set rgExpVersionComponents = New RegExp'
$ sha1sum iTunesSetup7.exe
5cdc86b2edb1411b9a022f05b1bfbe858fbcf901 iTunesSetup7.exe
$ du -sh iTunesSetup7.exe
35M iTunesSetup7.exe
$ wine --version
wine-1.7.14-126-g2bb1059
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=35833
Bug ID: 35833
Summary: iTunes 7 installer aborts early (automation methods
HRESULT incorrectly translated to VBScript runtime
Err.number)
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: vbscript
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
now the VBScript runtime error object and exception handling is implemented the
next thing :)
Trace log:
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+msi,+vbscript,+ole,+variant wine
./iTunesSetup7.exe >>log.txt 2>&1
...
0039:fixme:msi:AutomationObject_GetIDsOfNames Unknown member
L"DetectGEARDriverSetDeletion", clsid {000c109e-0000-0000-c000-000000000046}
...
0039:trace:msi:AutomationObject_AddRef (0x183370/0x183370)
0039:trace:vbscript:interp_errmode 1
0039:trace:vbscript:interp_short 2
0039:Call oleaut32.SysAllocString(001f3988
L"SYSTEM\\CurrentControlSet\\Services\\GearAspiWDM") ret=f7343052
0039:trace:ole:SysAllocStringLen
L"SYSTEM\\CurrentControlSet\\Services\\GearAspiWDM"
0039:Ret oleaut32.SysAllocString() retval=001f6284 ret=f7343052
0039:trace:vbscript:interp_string
0039:Call oleaut32.SysAllocString(001f39e4 L"DeleteFlag") ret=f7343052
0039:trace:ole:SysAllocStringLen L"DeleteFlag"
0039:Ret oleaut32.SysAllocString() retval=001f97b4 ret=f7343052
0039:trace:vbscript:interp_icall
...
0039:trace:msi:AutomationObject_Invoke Method 11, L"RegistryValue"
...
0039:Call advapi32.RegOpenKeyW(80000002,001f6464
L"SYSTEM\\CurrentControlSet\\Services\\GearAspiWDM",0064df10) ret=7ecdc24c
0039:Ret advapi32.RegOpenKeyW() retval=00000002 ret=7ecdc24c
0039:Call oleaut32.VariantClear(0064def0) ret=7ecdc67d
0039:trace:variant:VariantClear (0x64def0->(VT_I4))
0039:Ret oleaut32.VariantClear() retval=00000000 ret=7ecdc67d
0039:Call oleaut32.VariantClear(0064dee0) ret=7ecdc68b
0039:trace:variant:VariantClear (0x64dee0->(VT_BSTR))
0039:Ret oleaut32.VariantClear() retval=00000000 ret=7ecdc68b
0039:Call oleaut32.VariantClear(0064ded0) ret=7ecdc699
0039:trace:variant:VariantClear (0x64ded0->(VT_BSTR))
0039:Ret oleaut32.VariantClear() retval=00000000 ret=7ecdc699
0039:Call advapi32.RegCloseKey(00000000) ret=7ecdc6a7
0039:Ret advapi32.RegCloseKey() retval=00000006 ret=7ecdc6a7
0039:Call oleaut32.SysFreeString(001f60f4 L"RegistryValue") ret=7ecd7ea6
0039:Ret oleaut32.SysFreeString() retval=00000000 ret=7ecd7ea6
0039:trace:msi:AutomationObject_Invoke Returning 0x8002000b, not ok
0039:trace:msi:AutomationObject_Release (0x185e38/0x185e38)
0039:warn:vbscript:exec_script Failed 8002000b in resume next mode
0039:trace:vbscript:exec_script unwind jmp 642 stack_off 0
...
0039:fixme:msi:AutomationObject_GetIDsOfNames Unknown member L"Err", clsid
{000c109e-0000-0000-c000-000000000046}
0039:trace:vbscript:DispatchEx_AddRef (0x1d92c8) ref=2
0039:trace:vbscript:interp_mcall
0039:trace:ole:ITypeInfo_fnGetIDsOfNames (0x1d8de0) Name L"number" cNames 1
...
0039:trace:vbscript:Err_Number
0039:trace:vbscript:DispatchEx_Release (0x1d92c8) ref=2
0039:trace:vbscript:DispatchEx_Release (0x1d92c8) ref=1
0039:trace:vbscript:interp_short 9
0039:trace:vbscript:interp_nequal
0039:trace:vbscript:var_cmp {VT_I4: -2147352565} {VT_I2: 9}
0039:Call oleaut32.VarCmp(001f5f70,001f5f80,00000000,00000000) ret=f73439a1
...
0039:Call oleaut32.VariantClear(001f5f70) ret=f733fecd
0039:trace:variant:VariantClear (0x1f5f70->(VT_I4))
0039:Ret oleaut32.VariantClear() retval=00000000 ret=f733fecd
0039:Call oleaut32.VariantClear(001f5f80) ret=f733fecd
0039:trace:variant:VariantClear (0x1f5f80->(VT_I2))
0039:Ret oleaut32.VariantClear() retval=00000000 ret=f733fecd
0039:trace:vbscript:interp_jmp_false 667
...
0037:Call user32.MessageBoxW(00000000,001e6d38 L"Unable to install the GEAR
driver set at this time. The GEARAspiWDM service use by the GEAR driver set is
scheduled to be deleted during the next system reboot. Please reboot the system
and run iTunes again.",7ed51b92 L"Install Failed",00000000) ret=7ecc3d83
--- snip ---
The relevant VBScript snippet:
--- snip ---
Sub DetectGEARDriverSetDeletion
Dim DeleteFlag
On Error Resume Next
DeleteFlag =
Session.Installer.RegistryValue(2,"SYSTEM\CurrentControlSet\Services\GearAspiWDM",
"DeleteFlag")
If Err.number <> 9 Then
If IsNumeric(DeleteFlag) Then
Session.Property("GEARASPIWDM_SERVICE_DELETED") = "#" +
CStr(DeleteFlag)
Else
Session.Property("GEARASPIWDM_SERVICE_DELETED") = DeleteFlag
End If
End If
End Sub
--- snip ---
MSDN: http://msdn.microsoft.com/en-us/library/aa369471%28v=vs.85%29.aspx
--- quote ---
The RegistryValue method of the Installer object reads information about a
specified registry key of value. If the key or value specified does not exist,
the method returns an error of 9, "Subscript out of Range."
--- quote ---
Wine MSI InstallerImpl_RegistryValue() returns HRESULT = 0x8002000B
(DISP_E_BADINDEX) which seems to be right.
This code needs to be translated to VBScript runtime error code.
The equivalent would be something like 0x800A0009 ... if one searches for
"Subscript out of Range." and "VBscript".
Source:
http://source.winehq.org/git/wine.git/blob/fc0ef22a44dee4f78b8784ada501bb8f…
--- snip ---
2030 HRESULT exec_script(script_ctx_t *ctx, function_t *func, vbdisp_t *vbthis,
DISPPARAMS *dp, VARIANT *res)
2031 {
2032 exec_ctx_t exec = {func->code_ctx};
2033 vbsop_t op;
2034 HRESULT hres = S_OK;
2035
2036 exec.code = func->code_ctx;
...
2106 while(exec.instr) {
2107 op = exec.instr->op;
2108 hres = op_funcs[op](&exec);
2109 if(FAILED(hres)) {
2110 ctx->err_number = hres;
2111
2112 if(exec.resume_next) {
...
--- snip ---
$ sha1sum iTunesSetup7.exe
5cdc86b2edb1411b9a022f05b1bfbe858fbcf901 iTunesSetup7.exe
$ du -sh iTunesSetup7.exe
35M iTunesSetup7.exe
$ wine --version
wine-1.7.14-234-g6e7440e
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=18941
Summary: Microsoft Reader install crashes
Product: Wine
Version: 1.1.23
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sashoalm(a)gmail.com
I know that Microsoft Reader worked before but now the install crashes. This
happened after I added the winehq repos to my software sources list, so I'm
using the newest version 1.1.23
--
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=18651
Summary: Microsoft Reader hangs in full screen mode
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://download.microsoft.com/download/d/0/9/d099ad62-
41d1-4e92-9935-67955a437460/MSReaderSetupUSA.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Created an attachment (id=21366)
--> (http://bugs.winehq.org/attachment.cgi?id=21366)
wine-1.1.22-135-g79fcaa7 +win
Microsoft Reader hangs and has to be killed when put into Full Screen Mode.
This appears in the console:
fixme:win:LockWindowUpdate (0x30036), partial stub!
fixme:win:LockWindowUpdate ((nil)), partial stub!
To get this far, "winetricks vcrun6" required to work around Bug 18644.
--
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=28536
Bug #: 28536
Summary: MS Reader cannot be moved or closed after full-screen
mode
Product: Wine
Version: 1.3.29
Platform: x86-64
URL: http://download.microsoft.com/download/d/0/9/d099ad62-
41d1-4e92-9935-67955a437460/MSReaderSetupUSA.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 36631
--> http://bugs.winehq.org/attachment.cgi?id=36631
Wine 1.3.29 console output
MS Reader can now be put into full-screen mode, and taken back out.
The Reader behaves normally before, but after putting it into full-screen, then
taking it back out, it is impossible to move the window or close it. It is
also impossible to click on any windows behind the Reader, effectively keeping
it on-top covering the whole screen, although it doesn't look like it is.
--
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=18644
Summary: Microsoft Reader will not open properly
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cscott0108(a)gmail.com
CC: cscott0108(a)gmail.com
When I try to launch Microsoft reader it opens and immediately produces an
error " The Program msreader.exe has encountered a serious problem and needs to
close. We are sorry for the inconvenience." then it says there is a problem
with wine if it works fine in windows in vista and windows xp in virtual
machine works fine just in wine. I have made sure that all .dll files are there
and I installed the ie4linux software and running ie6 per the other help
instructions and no go. I am unsure where the error logs are located and I can
replicate the error on this machine so if any ideas. thanks chris.
--
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=28537
Bug #: 28537
Summary: MS Reader crashes on load
Product: Wine
Version: 1.3.29
Platform: x86-64
URL: http://download.microsoft.com/download/d/0/9/d099ad62-
41d1-4e92-9935-67955a437460/MSReaderSetupUSA.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: msvcirt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
Created attachment 36632
--> http://bugs.winehq.org/attachment.cgi?id=36632
wine-1.3.29-121-gfdda702 console output
MS Reader crashes on load. msvcirt is a work around.
fixme:msvcirt:MSVCIRT_ostrstream_sl_void (0x32f030) stub
fixme:msvcirt:MSVCIRT_operator_sl_pchar (0x32f030)->("Unknown Error: Module not
registered") stub
fixme:msvcirt:MSVCIRT_operator_sl_uchar (0x32f030)->( ) stub
fixme:msvcirt:MSVCIRT_operator_sl_pchar (0x32f030)->(":loadswid") stub
fixme:msvcirt:MSVCIRT_ends (0x32f030)->() stub
wine: Unhandled page fault on read access to 0xe5bc45f7 at address 0x5fad2307
(thread 0009), starting debugger...
--
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=41387
Bug ID: 41387
Summary: An error message displays when I run wine. Program is
running but message is really annoying..
Product: Wine
Version: 0.9.1.
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: shashikarajindabandara(a)gmail.com
Distribution: ---
Created attachment 55738
--> https://bugs.winehq.org/attachment.cgi?id=55738
Error Log
Log
--
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=23774
Summary: UltraISO: listview items don't highlight on single
LClick
Product: Wine
Version: 1.2-rc7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivankob4wine(a)gmail.com
Created an attachment (id=29798)
--> (http://bugs.winehq.org/attachment.cgi?id=29798)
np highlight
see the atachment
--
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=43803
Bug ID: 43803
Summary: Problems to starts programs
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: villamarinf(a)gmail.com
Distribution: ---
Created attachment 59337
--> https://bugs.winehq.org/attachment.cgi?id=59337
This .txt is the error in my computer
When I run any programs, Wine said, Critical error detected, but the program
starts normally
--
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=35755
Bug ID: 35755
Summary: UltraISO 'ISODrive.sys' needs
ntoskrnl.exe.ExfInterlockedRemoveHeadList
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntoskrnl
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says ...
(also mentioned in bug 32657)
--- snip ---
$ wine ultraiso.exe
fixme:ntoskrnl:KeInitializeSpinLock stub: 0x117390
fixme:ntoskrnl:KeInitializeEvent stub: 0x117394 1 0
fixme:ntoskrnl:ObReferenceObjectByHandle stub: 0x20 1f03ff (nil) 0 0x1173a4
(nil)
fixme:ntoskrnl:KeSetEvent (0x117394, 0, 0): stub
fixme:ntoskrnl:KeWaitForSingleObject stub: 0x117394, 0, 0, 0, (nil)
fixme:ntoskrnl:PsTerminateSystemThread stub: 0
wine: Call from 0x7b83ab23 to unimplemented function
ntoskrnl.exe.ExfInterlockedRemoveHeadList, aborting
wine: Unimplemented function ntoskrnl.exe.ExfInterlockedRemoveHeadList called
at address 0x7b83ab23 (thread 0014), starting debugger...
--- snip ---
$ wine --version
wine-1.7.14
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=38719
Bug ID: 38719
Summary: 64-bit ARM Windows applications from Windows SDK for
Windows 10 crash when accessing TEB/PEB members
(AArch64 platform specific register X18 used for TEB?)
Product: Wine
Version: 1.7.44
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
continuation of bug 38714
'mt.exe' runs further now but still crashes.
--- snip ---
...
0027:Starting process L"Z:\\root\\wine\\64\\arm64\\mt.exe"
(entryproc=0x14010ca70)
0027:fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
0027:trace:seh:raise_exception info[0]=0000000000000000
0027:trace:seh:raise_exception info[1]=0000001200000268
0027:trace:seh:call_stack_handlers calling handler at 0x7fb0d6dbbc
code=c0000005 flags=0
wine: Unhandled page fault on read access to 0x1200000268 at address
0x140056d50 (thread 0027), starting debugger...
0027:trace:seh:start_debugger Starting debugger "winedbg --auto 38 64"
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
...
Unhandled exception: page fault on read access to 0x1200000268 in 64-bit code
(0x0000000140056d50).
Register dump:
ARM64 EL0t Mode
Pc:0000000140056d50 Sp:0000007fafe9f5a0 Lr:00000001400e94d8
Pstate:0000000020000000(--C-)
x0: 000000000000003e x1: 0000000000000000 x2: 000000000000003e x3:
0000007fafe9f5f8 x4: 0000000000000001
x5: 0000007fb02900e8 x6: 0000007fb029af54 x7: 0000000000000002 x8:
0000000140140220 x9: 0000001200000238
x10:0000000000000000 x11:0000000000000000 x12:0101010101010101
x13:0000000000000028 x14:ffffffffffffffff
x15:0000007fafd49a08 ip0:0000007fb0d92268 ip1:0000007f53e999c0
x18:0000007fb0f619d0 x19:0000007fafe9f628
x20:000000000000003e x21:0000007fb0290750 x22:0000007fafe9fbb8
x23:0000007fafe9f698 x24:0000007fb00cd000
x25:0000007fb02908c0 x26:0000007fdd267d80 x27:0000007fdd267cf8
x28:0000007fb00e5000 Fp:0000007fafe9f5d0
Stack dump:
0x0000007fafe9f5a0: 0000007fafe9f5c0 0000007fb0d37378
0x0000007fafe9f5b0: 0000007fafe9f5c0 0000007fb0d37510
0x0000007fafe9f5c0: 0000007fc00000e5 0000007f53e999c0
0x0000007fafe9f5d0: 0000007fafe9f650 00000001400730b0
0x0000007fafe9f5e0: 0000000000000000 000000000000001c
0x0000007fafe9f5f0: 0000007f00000000 000000000000003e
0x0000007fafe9f600: 0000007fb02908c0 0000007fdd267d80
0x0000007fafe9f610: 0000007fdd267cf8 4010040140100401
0x0000007fafe9f620: 0000000000000006 0000000000000000
0x0000007fafe9f630: 0000000000000000 0000000000000000
0x0000007fafe9f640: 0000007fafe9f670 0000007f53e99a40
0x0000007fafe9f650: 0000007fafe9f6c0 0000000140073688
Backtrace:
=>0 0x0000000140056d50 in mt (+0x56d50) (0x0000007fafe9f5d0)
1 0x00000001400e94d8 in mt (+0xe94d7) (0x0000007fafe9f5d0)
0x0000000140056d50: be_arm64_disasm_one_insn: not done
Modules:
Module Address Debug info Name (52 modules)
ELF 400000- 413000 Deferred <wine-loader>
PE 140000000- 140170000 Export mt
...
Threads:
process tid prio (all id:s are in hex)
...
00000026 (D) Z:\root\wine\64\arm64\mt.exe
00000027 0 <==
--- snip ---
Since debugging is not possible as of now, an "offline" analysis at the crash
location:
--- snip ---
...
0000000140056D38 ADD X8, X18, #0 ; X18 = NtCurrentTeb()?
0000000140056D3C LDR X9, [X8,#0x60] ; Teb->Peb
0000000140056D40 ADRP X8, #0x140140000 ; imports segment (.idata)
0000000140056D44 ADD X2, X0, #0 ; arg3 = size
0000000140056D48 ADD X8, X8, #0x220 ; HeapAlloc
0000000140056D4C MOV W1, #0 ; arg2 = flags = 0
0000000140056D50 LDR X0, [X9,#0x30] ; arg1 = Peb->ProcessHeap
0000000140056D54 LDAR X9, [X8]
0000000140056D58 BR X9 ; HeapAlloc()
--- snip ---
Essentially being:
HeapAlloc( GetProcessHeap(), 0, size)
Further decoded:
HeapAlloc( ((NtCurrentTeb()->ProcessEnvironmentBlock)->ProcessHeap), 0, size)
I haven't found information on register X18 being used for TEB hence this is
another guess.
There is no initialization of X18 in caller chain and even in the whole app
code.
Running the whole .text segment through disas only reads through "ADD" and
"LDR" instructions can be found.
Other information sources:
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20150119/254111…
("[llvm] r226664 - AArch64: add backend option to reserve x18 (platform
register)")
https://android.googlesource.com/platform/art/+/63206f3%5E!/
("AArch64: Fix the usage of Thread Register for arm64")
--- quote ---
This patch cleans-up the usage of x18 as TR for Arm64. As described in
the Arm64 Procedure Call Standard, the recommended usage for x18 is to
carry inter-procedural state (i.e. ART thread information).
...
--- quote ---
https://stackoverflow.com/questions/28109826/arm64-using-gas-on-ios
--- quote ---
X0-X7 - arguments and return value (volatile)
X8 = indirect result (struct) location (or temp reg)
X9-X15 = temporary (volatile)
X16-X17 - intro-call-use registers (PLT, Linker) or temp
X18 - platform specific use (TLS)
X19-X28 - callee saved registers (non-volatile)
X29 - frame pointer
X30 - link register (LR)
SP - stack pointer and zero (XZR)
V0-V7, V16-V31 - volatile NEON and FP registers
V8-V15 - callee saved registers (non-volatile, used for temp vars by compilers)
--- quote ---
$ sha1sum sdksetup.exe
0720e4e922ff7aa8cc78b23a00906a96c2b237a4 sdksetup.exe
$ du -sh sdksetup.exe
1.2M sdksetup.exe
# ./wine64 --version
wine-1.7.43-178-g22983f2
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=27180
Summary: Mobile Master: Crash at update
Product: Wine
Version: 1.3.19
Platform: x86
URL: http://www.jumpingbytes.com/down/MobileMasterInst.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=34724)
--> (http://bugs.winehq.org/attachment.cgi?id=34724)
Terminal output on Wine 1.3.20
Steps to reproduce:
1) remove ~/.wine
2) winetricks gecko
3) install Mobile Master 7.8.4
4) wine MMStarter.exe
5) Help->Check for Update...->Install
Behaviour:
Crash.
Expected behaviour:
No crash.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=33543
Bug #: 33543
Summary: Pervasive SQL v10 installer aborts with "not enough
free disk space" (needs msi builtin
"PrimaryVolumePath" and "PrimaryVolumeSpaceAvailable"
properties)
Product: Wine
Version: 1.5.29
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the PSQL installer (actually a sub-installer of another app) complains about
not enough free disk space.
"... installation requires at least [PsqlRequiredMinimumMB] MB of free space on
volume [PrimaryVolumePath] to continue. Free up space on this volume and run
the installation again or run the installation on a different system."
Trace log:
--- snip ---
...
0031:trace:process:create_process_impl app (null) cmdline L"msiexec /i
\"F:\\PervasiveMin\\PervasivePSQLv10WGE_x86.msi\" /qn PVSW_PSQL_LICENSE_KEY=foo
PVSW_RUN_WGE_AS_SVC=Y /l*v \"C:\\PSQL_v10_Install.log\""
...
000d:trace:msi:msi_get_property property L"PrimaryVolumeSpaceAvailable" not
found
...
000d:trace:msi:msi_get_property returning L"122880" for property
L"PsqlRequiredMinimum512Bytes"
...
000d:trace:msi:MSI_EvaluateConditionW 1 <- L"Not Installed And
(PrimaryVolumeSpaceAvailable<PsqlRequiredMinimum512Bytes)"
000d:trace:msi:ACTION_PerformAction Performing action
(L"pvswCA_AbortMsg_NotEnoughMinimumDiskSpace")
...
000d:trace:msi:ACTION_CustomAction Handling custom action
L"pvswCA_AbortMsg_NotEnoughMinimumDiskSpace" (113 (null) L"29033")
...
000d:err:msi:ITERATE_Actions Execution halted, action
L"pvswCA_AbortMsg_NotEnoughMinimumDiskSpace" returned 1603
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370847%28v=vs.85%…
("PrimaryVolumeSpaceAvailable property")
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370846%28v=vs.85%…
("PrimaryVolumePath property")
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370845%28v=vs.85%…
("PRIMARYFOLDER property")
Orca, "PervasivePSQLv10WGE_x86.msi"
Property table:
--- snip ---
...
PRIMARYFOLDER PVSW_PSQL_INSTDIR32
...
--- snip ---
Directory table:
--- snip ---
PVSW_PSQL_INSTDIR32 PVSW_PSQL_INSTDIR32_ROOT PSQL
INSTALLDIR PVSW_PSQL_INSTDIR32 .
PVSW_PSQL_INSTDIR64 PVSW_PSQL_INSTDIR64_ROOT PSQL
INSTALLDIR64 PVSW_PSQL_INSTDIR64 .
ISCommonFilesFolder CommonFilesFolder Instal~1|InstallShield
PVSW_PSQL_DATADIR_ROOT CommonAppDataFolder PERVAS~3|Pervasive Software
PVSW_PSQL_DATADIR PVSW_PSQL_DATADIR_ROOT PSQL
PVSW_PSQL_INSTDIR32_ROOT ProgramFilesFolder PERVAS~1|Pervasive Software
ProgramFilesFolder TARGETDIR .:PROGRA~1|program files
PVSW_PSQL_INSTDIR64_ROOT ProgramFiles64Folder PERVAS~2|Pervasive Software
--- snip ---
Google found a log of installer on native Windows which also gives hints:
http://www.sms.com.sg/public/olam/PSQL_v10_Install.log
--- snip ---
...
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying CostingComplete
property. Its current value is '0'. Its new value: '1'.
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: BindImage
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: PublishComponent
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: SelfReg
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2262 2: Extension 3: -2147287038
MSI (s) (08:10) [18:54:59:859]: Note: 1: 2205 2: 3: Font
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying
PrimaryVolumeSpaceAvailable property. Its current value is '0'. Its new value:
'431264336'.
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying
PrimaryVolumeSpaceRequired property. Its current value is '0'. Its new value:
'87239'.
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Modifying
PrimaryVolumeSpaceRemaining property. Its current value is '0'. Its new value:
'431177097'.
MSI (s) (08:10) [18:54:59:859]: PROPERTY CHANGE: Adding PrimaryVolumePath
property. Its value is 'C:'.
MSI (s) (08:10) [18:54:59:859]: Skipping action:
pvswCA_AbortMsg_NotEnoughMinimumDiskSpace (condition is false)
MSI (s) (08:10) [18:54:59:859]: Doing action: RemoveExistingProducts
Action ended 18:54:59: InstallValidate. Return value 1.
...
--- snip ---
Might be useful to also provide "PrimaryVolumeSpaceRequired" and
"PrimaryVolumeSpaceRemaining" properties at some point but not strictly
required here.
$ wine --version
wine-1.5.29-163-g4013a8d
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=34637
Bug #: 34637
Summary: Winlaunch OSX launchpad for windows crashes on start
Product: Wine
Version: 1.7.3
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adec2010(a)hotmail.co.uk
Classification: Unclassified
Created attachment 46163
--> http://bugs.winehq.org/attachment.cgi?id=46163
Winlaunch attachment
Winlaunch OSX style launcher for windows.
Does not run at all. Attached error 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=34911
Bug #: 34911
Summary: WinLaunch 0.4.6.1 (OSX Style free Launcher) needs
windowscodecs.dll.IPropertyBag2_Write_Proxy
Product: Wine
Version: 1.7.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: windowscodecs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says...
Prerequisite: 'winetricks -q dotnet40'
If you switch themes/save settings the app displays a message box "exception
thrown".
Terminal output:
--- snip ---
wine: Call from 0x7b83a8bf to unimplemented function
windowscodecs.dll.IPropertyBag2_Write_Proxy, aborting
--- snip ---
'winetricks -q windowscodecs' works around.
$ 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.
http://bugs.winehq.org/show_bug.cgi?id=10666
Summary: My Invoices and Estimates does not run and Installs
(with errors).
Product: Wine
Version: 0.9.49.
Platform: PC
URL: http://shop.avanquest.com/usa/
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dennis.dentremont(a)gmail.com
Created an attachment (id=9493)
--> (http://bugs.winehq.org/attachment.cgi?id=9493)
wine console output
My Invoice and Estimates 8.0 Trial version.
Software installs but fails to install fonts and produces the following type of
error. "Font TT0001M did not install". The code changes to TT0XXXX depending on
the font it's trying to install at the time.
When I try and run it, it just simply fails. I have attached the console
output.
--
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=29344
Bug #: 29344
Summary: Multiple apps need Scripting.FileSystemObject
implementation (Microsoft Scripting Runtime)
Product: Wine
Version: 1.3.34
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
there are several apps/bugs that suffer from missing
"Scripting.FileSystemObject" implementation.
Unfortunately there is not a single bug that is not polluted by winetricks
wsh56/57 recipes where people kept on moving to other issues, completely
ignoring this one...
Creating this bug as starting point for "Scripting.FileSystemObject"
implementation to allow proper dependency tracking of other bugs.
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=30131
Bug #: 30131
Summary: wPrime doesn't start
Product: Wine
Version: 1.4
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
When I try to run it using native msvbm60.dll, these messages are being logged
in console:
fixme:ole:OleLoadPictureEx
(0xbae154,774,0,{7bf80980-bf32-101a-8bbb-00aa00300cab},x=0,y=0,f=0,0x32f914),
partially implemented.
fixme:ole:OLEPictureImpl_SaveAsFile (0x133800)->(0x1383d8, 0, (nil)), hacked
stub.
Welcome to wPrime Benchmark v2.08.
err:ole:CoGetClassObject class {0d43fe01-f093-11cf-8940-00a0c9054228} not
registered
err:ole:create_server class {0d43fe01-f093-11cf-8940-00a0c9054228} not
registered
err:ole:CoGetClassObject no class object {0d43fe01-f093-11cf-8940-00a0c9054228}
could be created for context 0x5
followed by a message box saying:
Run-time error '429':
ActiveX component can't create object
--
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=36465
Bug ID: 36465
Summary: Age of Wushu: Lua script - Create device failed!
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: furyhamster(a)gmail.com
Created attachment 48516
--> http://bugs.winehq.org/attachment.cgi?id=48516
Terminal output from running the launcher.
Running the launcer of Age of Wushu opens up an window titled "lua script" and
in that window it states that "Create device failed!"
--
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=36486
Bug ID: 36486
Summary: Age of Wushu: frequent display of in-game "Don't speed
up!" dialog tip disrupts gameplay (Wine fails
kernel32.GetTickCount API entry hook check)
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
during investigation of bug 36465 I found this goodie, deserving it's own bug
of course :)
Searching the net reveals similar reports for Windows and MAC:
http://www.ageofwushu.com/forums/viewtopic.php?f=29&t=7339http://www.ageofwushu.com/forums/viewtopic.php?f=30&t=14469http://portingteam.com/topic/9284-age-of-wushu-dont-speed-up-tip-spam/
This disguised message is in fact the result of a failed API hook check.
The vendor obviously doesn't want to go into technical details/reveal this, see
the support forums/site for answers to this problem.
Enter Wine and get the answers :)
One hint is contained in the game log file 'bin/trace.log'
With relay thunks emitted (+relay channel):
--- snip ---
...
[2014-05-18 22:01:13.573] Time Func Pos Begin QueryPerformanceCounter=54
QueryPerformanceFrequency=54 GetTickCount=54 timeGetTime=54 timeSetEvent=54
SetTimer=54
...
--- snip ---
without relay thunks:
--- snip ---
[2014-05-18 22:23:02.818] Time Func Pos Begin QueryPerformanceCounter=8d
QueryPerformanceFrequency=8d GetTickCount=55 timeGetTime=55 timeSetEvent=8d
SetTimer=55
--- snip ---
The hex codes are the first opcode byte of each API entry.
The protection code makes a snapshot of certain API entries on startup.
The entry bytes are stored for later comparison to detect dynamic hooking
(through dll injection for example).
--- snip ---
...
0056:Call KERNEL32.GetModuleHandleA(11a8eef0 "kernel32.dll") ret=1134c3b1
0056:Ret KERNEL32.GetModuleHandleA() retval=7b810000 ret=1134c3b1
0056:Call KERNEL32.GetProcAddress(7b810000,11a8eed4 "QueryPerformanceCounter")
ret=1134c3c3
0056:Ret KERNEL32.GetProcAddress() retval=7b824afc ret=1134c3c3
0056:Call KERNEL32.GetModuleHandleA(11a8eef0 "kernel32.dll") ret=1134c3d9
0056:Ret KERNEL32.GetModuleHandleA() retval=7b810000 ret=1134c3d9
0056:Call KERNEL32.GetProcAddress(7b810000,11a8eeb4
"QueryPerformanceFrequency") ret=1134c3e5
0056:Ret KERNEL32.GetProcAddress() retval=7b824b14 ret=1134c3e5
0056:Call KERNEL32.GetModuleHandleA(11a8eef0 "kernel32.dll") ret=1134c3fb
0056:Ret KERNEL32.GetModuleHandleA() retval=7b810000 ret=1134c3fb
0056:Call KERNEL32.GetProcAddress(7b810000,11a8eea4 "GetTickCount")
ret=1134c407
0056:Ret KERNEL32.GetProcAddress() retval=7b82374c ret=1134c407
0056:Call KERNEL32.GetModuleHandleA(11a8ee98 "WINMM.dll") ret=1134c41d
0056:Ret KERNEL32.GetModuleHandleA() retval=f7220000 ret=1134c41d
0056:Call KERNEL32.GetProcAddress(f7220000,11a8ee88 "timeGetTime") ret=1134c429
0056:Ret KERNEL32.GetProcAddress() retval=7b82374c ret=1134c429
0056:Call KERNEL32.GetModuleHandleA(11a8ee98 "WINMM.dll") ret=1134c43f
0056:Ret KERNEL32.GetModuleHandleA() retval=f7220000 ret=1134c43f
0056:Call KERNEL32.GetProcAddress(f7220000,11a8ee78 "timeSetEvent")
ret=1134c44b
0056:Ret KERNEL32.GetProcAddress() retval=f7226d44 ret=1134c44b
0056:Call KERNEL32.GetModuleHandleA(11a8ee68 "USER32.dll") ret=1134c461
0056:Ret KERNEL32.GetModuleHandleA() retval=7eca0000 ret=1134c461
0056:Call KERNEL32.GetProcAddress(7eca0000,11a8ee5c "SetTimer") ret=1134c46d
0056:Ret KERNEL32.GetProcAddress() retval=7ecb0798 ret=1134c46d
...
--- snip ---
Runtime check of API entries every two seconds:
--- snip ---
...
0056:Call KERNEL32.GetModuleHandleA(11a8eef0 "kernel32.dll") ret=1134c4f5
0056:Ret KERNEL32.GetModuleHandleA() retval=7b810000 ret=1134c4f5
0056:Call KERNEL32.GetProcAddress(7b810000,11a8eed4 "QueryPerformanceCounter")
ret=1134c505
0056:Ret KERNEL32.GetProcAddress() retval=7b824afc ret=1134c505
0056:Call KERNEL32.GetModuleHandleA(11a8eef0 "kernel32.dll") ret=1134c2fb
0056:Ret KERNEL32.GetModuleHandleA() retval=7b810000 ret=1134c2fb
0056:Call KERNEL32.GetProcAddress(7b810000,11a8eeb4
"QueryPerformanceFrequency") ret=1134c30b
0056:Ret KERNEL32.GetProcAddress() retval=7b824b14 ret=1134c30b
0056:Call KERNEL32.GetModuleHandleA(11a8eef0 "kernel32.dll") ret=1134c2fb
0056:Ret KERNEL32.GetModuleHandleA() retval=7b810000 ret=1134c2fb
0056:Call KERNEL32.GetProcAddress(7b810000,11a8eea4 "GetTickCount")
ret=1134c30b
0056:Ret KERNEL32.GetProcAddress() retval=7b82374c ret=1134c30b
0056:Call KERNEL32.GetModuleHandleA(11a8ee98 "WINMM.dll") ret=1134c32b
0056:Ret KERNEL32.GetModuleHandleA() retval=f7220000 ret=1134c32b
0056:Call KERNEL32.GetProcAddress(f7220000,11a8ee88 "timeGetTime") ret=1134c33b
0056:Ret KERNEL32.GetProcAddress() retval=7b82374c ret=1134c33b
0056:Call KERNEL32.GetModuleHandleA(11a8ee98 "WINMM.dll") ret=1134c2fb
0056:Ret KERNEL32.GetModuleHandleA() retval=f7220000 ret=1134c2fb
0056:Call KERNEL32.GetProcAddress(f7220000,11a8ee78 "timeSetEvent")
ret=1134c30b
0056:Ret KERNEL32.GetProcAddress() retval=f7226d44 ret=1134c30b
0056:Call KERNEL32.GetModuleHandleA(11a8ee68 "USER32.dll") ret=1134c2fb
0056:Ret KERNEL32.GetModuleHandleA() retval=7eca0000 ret=1134c2fb
0056:Call KERNEL32.GetProcAddress(7eca0000,11a8ee5c "SetTimer") ret=1134c30b
0056:Ret KERNEL32.GetProcAddress() retval=7ecb0798 ret=1134c30b
...
--- snip ---
Following is the list of API functions and their opcode checks.
call/jmp opcode bytes are treated as hook.
--- snip ---
kernel32.dll!QueryPerformanceCounter
-> [0]=0xE8 | [0]=0xE9 | [0]=0xFF | ![0]=<snapshot>
kernel32.dll!QueryPerformanceFrequency
-> [0]=0xE8 | [0]=0xE9 | [0]=0xFF | ![0]=<snapshot>
kernel32.dll!GetTickCount
-> [0]=0xE8 | [0]=0xE9 | [0]=0xFF | ![0]=<snapshot>
WINMM.dll!timeGetTime
-> [0]=0xE8 | [0]=0xE9 | [0]=0xFF | ![0]=<snapshot> | [7]=0xE8 | [7]=0xE9 |
[7]=0xFF
WINMM.dll!timeSetEvent
-> [0]=0xE8 | [0]=0xE9 | [0]=0xFF | ![0]=<snapshot>
user32.dll!SetTimer
-> [0]=0xE8 | [0]=0xE9 | [0]=0xFF | ![0]=<snapshot>
--- snip ---
The 'WINMM.dll!timeGetTime' entry point gets a special treatment and this the
problem.
Wine 'winmm.spec'
--- snip ---
@ stdcall timeGetTime() kernel32.GetTickCount
--- snip ---
Forwarded. Dumping the target with Winedbg gives:
--- snip ---
Wine-dbg>x/10b GetTickCount
0x7b8480d9 GetTickCount: 55 89 e5 53 83 e4 f0 e8 ab 75
--- snip ---
Disassembly:
--- snip ---
7B8480D9 55 PUSH EBP
7B8480DA 89E5 MOV EBP,ESP
7B8480DC 53 PUSH EBX
7B8480DD 83E4 F0 AND ESP,FFFFFFF0
7B8480E0 E8 AB75FDFF CALL KERNEL32.__x86.get_pc_thunk.bx
7B8480E5 81C3 1B2F0700 ADD EBX,72F1B
7B8480EB E8 72FFFFFF CALL KERNEL32.GetTickCount64
7B8480F0 8B5D FC MOV EBX,DWORD PTR SS:[EBP-4]
7B8480F3 C9 LEAVE
7B8480F4 C3 RETN
--- snip ---
*eeek* .. 'entry[7]' has indeed value 0xE8 hence the check fails.
The PIC code (setup of PIC register) in function prolog causes the harm here.
If you avoid the call opcode at 'entry[7]' everything is fine (for example
making this entry hotpatchable, inline GetTickCount64, use wrapper).
I already tested this. Wine code is no longer (mis)detected as hook and the
game runs fine without any "Speedup" spam.
$ sha1sum AgeofWushu_download.exe
a7101c50ce8deb33008da4ce044fca5e3add721d AgeofWushu_download.exe
$ du -sh AgeofWushu_download.exe
1.9M AgeofWushu_download.exe
$ wine --version
wine-1.7.19
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=34403
Bug #: 34403
Summary: AVP Classic WinRT/ARM port needs xinput1_4.dll
Product: Wine
Version: 1.7.1
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says...
--- snip ---
linaro@linaro-ubuntu-desktop:~/wine-apps/avpclassic$ ll
total 10744
drwxr-xr-x 2 linaro linaro 4096 Aug 31 15:05 ./
drwxrwxr-x 51 linaro linaro 4096 Aug 31 15:05 ../
-rw-rw-r-- 1 linaro linaro 37736 Jul 25 2012 D3D11ProxyDriver.dll
-rw-rw-r-- 1 linaro linaro 2840416 Aug 20 2012 D3DCompiler_Test.dll
-rw-rw-r-- 1 linaro linaro 1287248 Aug 21 08:05 MyAvP.exe
-rw-r--r-- 1 linaro linaro 2675765 Aug 31 15:05 avp_classic_arm.7z
-rw-rw-r-- 1 linaro linaro 333672 Jul 25 2012 d3dref9.dll
-rw-rw-r-- 1 linaro linaro 1742184 Jul 25 2012 d3dx9d.dll
-rw-rw-r-- 1 linaro linaro 71760 Aug 21 08:05 libbinkdec.dll
-rw-rw-r-- 1 linaro linaro 19536 Aug 21 08:05 libogg.dll
-rw-rw-r-- 1 linaro linaro 39504 Aug 21 08:05 libsmackerdec.dll
-rw-rw-r-- 1 linaro linaro 163920 Aug 21 08:05 libtheora.dll
-rw-rw-r-- 1 linaro linaro 1611856 Aug 21 08:05 libvorbis.dll
-rw-rw-r-- 1 linaro linaro 32848 Aug 21 08:05 libvorbisfile.dll
-rw-rw-r-- 1 linaro linaro 105316 Nov 10 2001 non-gold_english.txt
...
linaro@linaro-ubuntu-desktop:~/wine-apps/avpclassic$ wine ./MyAvP.exe
err:module:import_dll Library XINPUT1_4.dll (which is needed by
L"Z:\\home\\linaro\\wine-apps\\avpclassic\\MyAvP.exe") not found
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\home\\linaro\\wine-apps\\avpclassic\\MyAvP.exe" failed, status c0000135
--- snip ---
More info on XInput versions here:
http://msdn.microsoft.com/en-us/library/windows/desktop/hh405051%28v=vs.85%…
--- quote ---
XInput 1.4 ships today as a system component in Windows 8 as XINPUT1_4.DLL. It
is available “inbox” and does not require redistribution with an application.
The Windows Software Development Kit (SDK) contains the header and import
library for statically linking against XINPUT1_4.DLL. To download the Windows 8
SDK, see Downloads for developing desktop apps.
XInput 1.4 has these primary advantages over other versions of XInput:
* This is the only version that can be used in C++/DirectX Windows Store apps.
* The new XInputGetAudioDeviceIds function provides an audio device ID string
that you can use to open an XAudio2 mastering voice or audio device for a
headset attached to an Xbox 360 common controller. The
XInputGetDSoundAudioDeviceGuids function is not available in this version.
* Provides improved device capabilities reporting including
XINPUT_CAPS_WIRELESS, XINPUT_CAPS_FFB_SUPPORTED, XINPUT_CAPS_PMD_SUPPORTED, and
XINPUT_CAPS_NO_NAVIGATION flags and more accurate reporting of
XINPUT_CAPS_VOICE_SUPPORTED. These flags are combined in the Flags member of
the XINPUT_CAPABILITIES structure. The XInputGetCapabilities function returns
XINPUT_CAPABILITIES.
--- quote ---
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=36731
Bug ID: 36731
Summary: Runes of Magic 'ClientUpdater.exe' crashes after a
number of update cycles (mshtml environment setup
contains stack buffer overflow)
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
found during investigation of 'Runes of Magic' client updater.
There is a crash after a number of update cycles.
Unfortunately it's not easily traceable as it requires large downloads and many
client restarts (= hours) to reach the crash point.
I started the updater with a few debug channels (= reduced noise) which still
allowed me to do post-mortem analysis.
The launcher restarts itself after each update cycle.
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Runes of Magic
$ WINEDEBUG=+tid,+seh,+loaddll,+process,+mshtml wine ./launcher.exe
...
<hours, multiple updater restarts>
...
004f:trace:loaddll:load_builtin_dll Loaded L"C:\\windows\\system32\\mshtml.dll"
at 0x7c090000: builtin
004f:trace:mshtml:DllGetClassObject (CLSID_HTMLDocument
{00000001-0000-0000-c000-000000000046} 0x3392a8)
004f:trace:mshtml:ClassFactory_AddRef (0x1c2c80) ref = 1
004f:trace:mshtml:HTMLDocument_Create ((nil) IID_IUnknown 0x1c19d4)
004f:trace:mshtml:load_gecko ()
004f:trace:mshtml:check_version "Wine Gecko 2.24"
004f:trace:mshtml:load_xul
(L"C:\\windows\\system32\\gecko\\2.24\\wine_gecko\\\\xul.dll")
004f:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7c130001
ip=7c130001 tid=004f
004f:trace:seh:raise_exception info[0]=00000001
004f:trace:seh:raise_exception info[1]=8d43ade4
004f:trace:seh:raise_exception eax=00000001 ebx=006b0063 ecx=003389a0
edx=7bcda204 esi=00339330 edi=001c2de8
004f:trace:seh:raise_exception ebp=005c0070 esp=00338c00 cs=0023 ds=002b
es=002b fs=0063 gs=006b flags=00010212
004f:trace:seh:call_stack_handlers calling handler at 0x4a97b0 code=c0000005
flags=0
004f:trace:seh:call_stack_handlers handler at 0x4a97b0 returned 1
004f:trace:seh:call_stack_handlers calling handler at 0x7bc9ecf7 code=c0000005
flags=0
wine: Unhandled page fault on write access to 0x8d43ade4 at address 0x7c130001
(thread 004f), starting debugger...
--- snip ---
I looked at the crash site and noticed it being in the middle of opcode
sequence.
--- snip ---
7C130000 45 INC EBP
7C130001 0889 4424108D OR BYTE PTR DS:[ECX+8D102444],CL
7C130007 8313 B5 ADC DWORD PTR DS:[EBX],-4B
7C13000A FA CLI
--- snip ---
Decoded with proper opcode start addresses:
--- snip ---
7C12FFFF 8B45 08 MOV EAX,DWORD PTR SS:[EBP+8]
7C130002 894424 10 MOV DWORD PTR SS:[ESP+10],EAX
7C130006 8D83 13B5FAFF LEA EAX,[EBX+FFFAB513]
--- snip ---
Partial stack dump with 'esp' = 0x00338c00 from exception context:
--- snip ---
...
00338BA8 C0000005
00338BAC 00000000
00338BB0 00000000
00338BB4 7C130001
00338BB8 00000002
00338BBC 00000001
00338BC0 8D43ADE4 äC
00338BC4 00650074 t e
00338BC8 0033006D m 3
00338BCC 005C0032 2 \
00338BD0 00650067 g e
00338BD4 006B0063 c k
00338BD8 005C006F o \
00338BDC 002E0032 2 .
00338BE0 00340032 2 4
00338BE4 0077005C \ w
00338BE8 006E0069 i n
00338BEC 00000005
00338BF0 00650067 g e
00338BF4 006B0063 c k
00338BF8 005C006F o \
00338BFC 7C130000
00338C00 00338F74 ; UNICODE "C:\windows\system32\gecko\2.24\wine_gecko\"
00338C04 7C1FF480
00338C08 7C19E234 ; ASCII "load_xul"
00338C0C 7C19CF48 ; ASCII "(%s)"
00338C10 7BCEC8C1 ; ASCII
"L"C:\\windows\\system32\\gecko\\2.24\\wine_gecko\\\\xul.dll""
00338C14 7C19D4E8 ; ASCII "Wine Gecko 2.24"
00338C18 7C19E250 ; ASCII "check_version"
00338C1C 7C19D4C0 ; ASCII "%s"
00338C20 7BCEC8AF ; ASCII ""Wine Gecko 2.24""
...
--- snip ---
Yes, looks pretty much like a stack buffer overflow.
A string buffer overwrote 'ebp', 'ebx' values (register save on stack for
'__x86_get_pc_thunk_bx') and parts of the return address.
The NULL terminator cancelled out the lower 16 bits of the return address.
The culprit: 'load_xul' -> 'set_environment'
Source:
http://source.winehq.org/git/wine.git/blob/0be56d27d2d4b22367313fa4c6f1e658…
--- snip ---
439 static void set_environment(LPCWSTR gre_path)
440 {
441 WCHAR path_env[MAX_PATH], buf[20];
442 int len, debug_level = 0;
443
444 static const WCHAR pathW[] = {'P','A','T','H',0};
445 static const WCHAR warnW[] = {'w','a','r','n',0};
446 static const WCHAR xpcom_debug_breakW[] =
447
{'X','P','C','O','M','_','D','E','B','U','G','_','B','R','E','A','K',0};
448 static const WCHAR nspr_log_modulesW[] =
449 {'N','S','P','R','_','L','O','G','_','M','O','D','U','L','E','S',0};
450 static const WCHAR debug_formatW[] = {'a','l','l',':','%','d',0};
451
452 /* We have to modify PATH as XPCOM loads other DLLs from this
directory. */
453 GetEnvironmentVariableW(pathW, path_env,
sizeof(path_env)/sizeof(WCHAR));
454 len = strlenW(path_env);
455 path_env[len++] = ';';
456 strcpyW(path_env+len, gre_path);
457 SetEnvironmentVariableW(pathW, path_env);
458
459 SetEnvironmentVariableW(xpcom_debug_breakW, warnW);
460
461 if(TRACE_ON(gecko))
462 debug_level = 5;
463 else if(WARN_ON(gecko))
464 debug_level = 3;
465 else if(ERR_ON(gecko))
466 debug_level = 2;
467
468 sprintfW(buf, debug_formatW, debug_level);
469 SetEnvironmentVariableW(nspr_log_modulesW, buf);
470 }
--- snip ---
'path_env' must have overflowed ... but how?
I used a JIT debugger to examine the process environment block at the time of
the crash since 'GetEnvironmentVariableW' reads from
'NtCurrentTeb()->Peb->ProcessParameters->Environment'.
--- snip ----
Address UNICODE dump
...
00231EC0 m32\cmd.exe.PATH
00231EE0 =C:\windows\syst
00231F00 em32;C:\windows;
00231F20 C:\windows\syste
00231F40 m32\wbem;C:\wind
00231F60 ows\system32\gec
00231F80 ko\2.24\wine_gec
00231FA0 ko\;C:\windows\s
00231FC0 ystem32\gecko\2.
00231FE0 24\wine_gecko\;C
00232000 :\windows\system
00232020 32\gecko\2.24\wi
00232040 ne_gecko\;C:\win
00232060 dows\system32\ge
00232080 cko\2.24\wine_ge
002320A0 cko\;C:\windows\
002320C0 system32\gecko\2
002320E0 .24\wine_gecko\.
00232100 TEMP=C:\users\fo
00232120 cht\Temp.TMP=C:\
00232140 users\focht\Temp
00232160 .windir=C:\windo
00232180 ws.ALLUSERSPROFI
002321A0 LE=C:\users\Publ
002321C0 ic.APPDATA=C:\us
...
--- snip ---
At the time 'gre_path' path was appended, the string from 'PATH' environment
variable had already grown near 'MAX_PATH' (260 characters) buffer limit.
'PATH' is of course not limited to 'MAX_PATH' since it contains a list of
paths.
A better option would be to query with 'GetEnvironmentVariableW( value, NULL,
0)' first and allocate the needed buffer from heap, including length for
'gre_path'.
Even with these things corrected there is still a general problem: at one point
it will overflow/being blocked from appending to 'PATH'.
Each newly created updater process inherits the process environment from parent
(client updater restarts itself each time).
A more sophisticated thing to do would be to search for existing value and not
append if already present.
Wine Mono 'mscoree' component has a similar potential stack buffer overflow:
http://source.winehq.org/git/wine.git/blob/8cdcf470016f0655dfc8810f9d4d2f2d…
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=31358
Bug #: 31358
Summary: Bobcad v25 hangs on startup
Product: Wine
Version: 1.5.9
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
Tried installing free trial
13f91536f3a429ccb65b45b7bf72adb927c7d294 BobCAD_V25_Demo_32bit.exe
from
http://www.bobcad.com/products/cad
Seemed to install fine, and put up a UI, but the main window of the
UI was never drawn, and the UI was nonresponsive.
--
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=24664
Summary: The letter 'R' is not visible in Shapes On A Plane
Product: Wine
Version: 1.3.4
Platform: x86
URL: https://www.digipen.edu/?id=1170&proj=433
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
Nearly all the letter 'R' are not visible in text such as the options screen.
--
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=40111
Bug ID: 40111
Summary: mpr:mpr regression
Product: Wine
Version: 1.9.3
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
Since the commit below, all Windows XP machines (even non-VMs) except the
TestBot have a couple of systematic failures. It's not clear why the TestBot VM
does not get a failure. It could be because it's the only one to be a Pro
version, or because of a subtle network configuration difference.
Failure:
mpr.c:283: Test failed: Unexpected return: 53
mpr.c:303: Test failed: Unexpected return: 53
mpr:mpr results on test.winehq.org:
https://test.winehq.org/data/tests/mpr:mpr.html
commit d2ce22ba239d6ea4955e58784cf3e912920bb93b
Author: Pierre Schweitzer <pierre(a)reactos.org>
Date: Sun Jan 31 22:17:27 2016 +0100
mpr/tests: Add tests for WNetUseConnectionA().
Signed-off-by: Pierre Schweitzer <pierre(a)reactos.org>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
--
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=20987
Summary: msi tests can't be run in parallel
Product: Wine
Version: 1.1.34
Platform: PC
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: testcases
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
We spend an awful lot of time waiting for tests to finish.
It'd be awesome if "make -j 100 test" worked.
As a first step, let's make the msi tests work in parallel.
"make -j100" in the msi directory explodes at the moment
because many of the tests use the same filenames.
--
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=42118
Bug ID: 42118
Summary: Chessmaster 9000 Mentor Lines/Thinking Lines don't
work and freeze the game
Product: Wine
Version: 2.0-rc3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bkbk9(a)yahoo.ca
Distribution: ---
The "Mentor Lines" and "Thinking Lines" windows don't work in Chessmaster 9000.
Both windows should display the chess engine's best moves being considered by
its evaluation function. Under wine, these windows stay unresponsive and cause
the game underway to freeze.
--
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=41692
Bug ID: 41692
Summary: World of Tanks crashes instantly on start with OSSv4
on wine 1.9.17
Product: Wine
Version: 1.9.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: HASH.DuOrden(a)gmail.com
Distribution: ---
Created attachment 56092
--> https://bugs.winehq.org/attachment.cgi?id=56092
WINEDEBUG=+tid,+seh,+mmdevapi,+winmm,+driver,+msacm,+midi,+dsound,+dsound3d,+xaudio2,+xapofx,+dmusic,+mci,+pulse,+oss,+alsa,+coreaudio,+timestamp
Starting with wine-1.9.17 and up,
OSSv4 version:
Version info: OSS 4.2 (b 2006/201611080054) (0x00040100) OSS_HG
Hg revision: changeset: 948:233e1cedf15a
WoT crashes on start:
WorldOfTanks.exe wot_wait_for_mutex -clientGraphicsAPI d3d9
Regression testing result:
5df297206debc1256bfa479488e1941fce108cc5 is the first bad commit
commit 5df297206debc1256bfa479488e1941fce108cc5
Author: Hugh McMaster <hugh.mcmaster(a)outlook.com>
Date: Mon Aug 15 09:19:24 2016 +0000
reg/tests: Add more Unicode tests for 'reg import'.
Signed-off-by: Hugh McMaster <hugh.mcmaster(a)outlook.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
:040000 040000 ff708fa858bf6aac348c37802379037d5118796c
ddfdae286b6a11eb4d9d162376226b047c724850 M programs
Log of crash with wine-1.9.22 and
"WINEDEBUG=+tid,+seh,+mmdevapi,+winmm,+driver,+msacm,+midi,+dsound,+dsound3d,+xaudio2,+xapofx,+dmusic,+mci,+pulse,+oss,+alsa,+coreaudio,+timestamp"
--
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=43456
Bug ID: 43456
Summary: Cannot successfully install WebPlus X8 from SERIF.
Product: Wine
Version: 2.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: want.g(a)xtra.co.nz
Distribution: ---
Created attachment 58824
--> https://bugs.winehq.org/attachment.cgi?id=58824
Program Dump.
Cannot install WebPlus X8 from SERIF. This product starts to install, but fails
when publishing the product (Whatever that is). It copies files, sets up
Registry then fails when the program application subinacl.exe gets a page
error. The program DUMP showing this error is attached. The Windows S/W level
was set to Windows 10. However I have tried XP thru to Windows 10 and the
install fails for the same reason. The Libraries installed were: mfc42
(native), mfc42u(native) and msvcr100(native, builtin). The WINE level was
2.13-Staging. However the failure is the same when using lower levels of WINE.
Applications installed were: MicroSoft Visual C++ 2010 x86 Redist. 10.0.40219;
Wine Gecko (32 bit) 2.47; Wine Mono 4.7.0.
I am running XUBUNTU 16.04 LTS.
--
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=46017
Bug ID: 46017
Summary: Layers of Fear areas are almost entirely black
rendered
Product: Wine
Version: 3.18
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 62591
--> https://bugs.winehq.org/attachment.cgi?id=62591
screenshot
Main hall.
err:d3d:wined3d_debug_callback 0x937c010: "GL_INVALID_FRAMEBUFFER_OPERATION
error generated. Operation is not valid because a bound framebuffer is not
framebuffer complete.".
fixme:d3d:context_check_fbo_status FBO status
GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS (0x8da8).
fixme:d3d:context_dump_fbo_attachment GL_DEPTH_ATTACHMENT: 2d texture 1116,
128x128, 0 samples, format 0x81a5.
fixme:d3d:context_dump_fbo_attachment GL_STENCIL_ATTACHMENT: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT0: 2d-array
texture 1112, 128x128, 0 samples, format 0x822e.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT1: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT2: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT3: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT4: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT5: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT6: NONE.
fixme:d3d:context_dump_fbo_attachment GL_COLOR_ATTACHMENT7: NONE.
wine-3.18-114-g417e94f199
--
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=32991
Bug #: 32991
Summary: ARM port of "WabbitEMU" crashes due to unimplemented
function KERNEL32.dll.RtlUnwindEx (no ntdll forward on
arch=arm)
Product: Wine
Version: 1.5.24
Platform: arm
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the ARM port of "WabbitEMU", a Texas Instruments graphing calculator emulator
and dev tools crashes after clicking "Browse for a ROM image" radio button in
image selection dialog.
Download: http://forum.xda-developers.com/showpost.php?p=37928562
(main thread: http://forum.xda-developers.com/showthread.php?t=2092348)
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay wine ./Wabbitemu.exe
...
0024:Call user32.GetWindowTextA(00010096,40a0ebf0,00000104) ret=00439fa5
0024:Call window proc 0x40bc5f30
(hwnd=0x10096,msg=WM_GETTEXT,wp=00000104,lp=40a0ebf0)
0024:Ret window proc 0x40bc5f30
(hwnd=0x10096,msg=WM_GETTEXT,wp=00000104,lp=40a0ebf0) retval=00000000
0024:Ret user32.GetWindowTextA() retval=00000000 ret=00439fa5
0024:Call KERNEL32.GetLastError() ret=004141cf
0024:Ret KERNEL32.GetLastError() retval=00000000 ret=004141cf
0024:trace:seh:raise_exception info[0]=0047be54
0024:trace:seh:raise_exception info[1]=0047cc8e
wine: Call from 0x7bc9a630 to unimplemented function KERNEL32.dll.RtlUnwindEx,
aborting
0024:trace:seh:call_stack_handlers calling handler at 0x7bcb8d88 code=80000100
flags=1
0024:Call KERNEL32.UnhandledExceptionFilter(40a0e81c) ret=7bcb8df0
--- snip ---
The app is importing all win32 API by name so it's the real thing :-)
+module,+imports
--- snip ---
...
0009:trace:module:load_dll looking for L"KERNEL32.dll" in
L"Z:\\home\\linaro\\wine-apps\\wabbitemu;.;C:\\windows\\system32;C:\\windows\\system;C:\\windows;C:\\windows\\system32;C:\\windows;C:\\windows\\system32\\wbem"
0009:trace:module:load_dll Found L"C:\\windows\\system32\\KERNEL32.dll" for
L"KERNEL32.dll" at 0x7b820000, count=19
0009:warn:module:import_dll No implementation for KERNEL32.dll.RtlUnwindEx
imported from L"Z:\\home\\linaro\\wine-apps\\wabbitemu\\Wabbitemu.exe", setting
to 0x41820000
0009:trace:imports:import_dll --- RtlUnwindEx KERNEL32.dll.1209 = 0x41820000
0009:trace:imports:import_dll --- GetCommandLineA KERNEL32.dll.481 = 0x7b846be0
0009:trace:imports:import_dll --- RtlPcToFileHeader KERNEL32.dll.1205 =
0x7bc69188
0009:warn:module:import_dll No implementation for
KERNEL32.dll.RtlLookupFunctionEntry imported from
L"Z:\\home\\linaro\\wine-apps\\wabbitemu\\Wabbitemu.exe", setting to 0x41820024
0009:trace:imports:import_dll --- RtlLookupFunctionEntry KERNEL32.dll.1203 =
0x41820024
0009:trace:imports:import_dll --- GetModuleFileNameW KERNEL32.dll.634 =
0x7b86b864
...
--- snip ---
It also needs KERNEL32.dll.RtlLookupFunctionEntry later.
Wine forwards both to ntdll but only on arch=x86_64.
It seems Windows RT exposes both API.
Interestingly only the MSDN page for KERNEL32.dll.RtlLookupFunctionEntry gives
a hint about this:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms680597%28v=vs.85%…
("ARM Definition").
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=25193
Summary: Dasher does not operate correctly
Product: Wine
Version: 1.3.7
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: physicspirate(a)yahoo.ca
Greetings,
I've attempted to run
Dasher(http://appdb.winehq.org/objectManager.php?sClass=version&iId=21982&i…
and it does not appear to be loading or functioning correctly.
I've attached a screenshot of what happens after loading. There is a gray box
up top, and it appears to be non responsive. There also seems to be some
problems with the networking as I have a high speed connection, and their
servers tell me my latency is too high. If I run the same program on windows
it runs like a dream.
--
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=44427
Bug ID: 44427
Summary: Crashes program
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sluke0091(a)gmail.com
Distribution: ---
Created attachment 60369
--> https://bugs.winehq.org/attachment.cgi?id=60369
bug file attached
Program opens and then crashes 5 seconds later.
--
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=39339
Bug ID: 39339
Summary: Adventure games from Daedalic Ent. (Night of the
Rabbit, Edna & Harvey, A New Beginning) have no
in-game audio and freeze on new game start - XAudio2_7
Product: Wine
Version: 1.7.51
Hardware: x86
URL: http://store.steampowered.com/app/230820/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: xaudio2
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: aeikum(a)codeweavers.com
Distribution: ---
On my system the problem was surfaced by the Xaudio2 implementation in 1.7.51,
the games used to work properly before. It sounds similar to bug #39320 and bug
#39321, except that the proposed patch doesn't help here.
All the adventure games from the developer/publisher Daedalic Entertainment
that use Xaudio2 interface are affected in a similar manner:
- the main menu is missing audio
- when I try to start a new game or load a saved game, the game freezes (100%
cpu usage) as soon as the game is loaded.
- quitting the games from the main menu takes a long time (1-2 minutes)
I reproduced the problem in these games:
The Night of the Rabbit, Edna & Harvey: Harvey's New Eyes, A New Beginning -
Final Cut.
The games load xaudio2_7.dll
Note that almost all these games have demo versions either on Steam or
elsewhere, but those demos are older versions of the games and they don't use
XAudio2.
The only demo (so far) which has the bug is the Night of the Rabbit demo on
Steam (link added to url).
Steps to reproduce the problem in NotR demo:
1. install the demo on Steam. Steam installs .Net 3.5 and MSVC++, they are not
needed for the game, you can delete the installers located in _CommonRedist
before starting the demo.
2. the demo starts with a video (audio works in there). The menu has no audio
with built-in xaudio2.
3. start a new game...the game seems to be hung at this point. It takes 1-2
minutes until the first intro video begins to play. Skip the video <Esc>, the
game screen appears and the game is frozen for good.
4. you can reproduce the long wait before the game completely quits, if you
exit the game from the main menu.
wine-1.7.51-201-g60d1d6f
Fedora 22 32-bit
alsa-lib-1.0.29-1.fc22.i686
openal-soft-1.16.0-5.fc22.i686
Audio device: NVIDIA Corporation MCP61 High Definition Audio (rev a2)
--
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=36844
Bug ID: 36844
Summary: Multiple games need X3DAudio1_7.dll (BeamNG v0.3 Tech
Demo)
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-dsound
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says.
Bug 12182 should be avoided in future (meta bug) .. very unfortunate, covering
all XAudio dlls.
Better are bugs that specifically target stub dlls like bug 24545 ("Monkey
Island: Special Edition wants X3DAudio1_6.dll").
--- snip ---
$ pwd
/home/focht/.wine/drive_c/users/focht/Local Settings/Application
Data/BeamNG/BeamNG-Techdemo-0.3
...
$ wine ./BeamNGSandbox.x86.exe
...
err:module:import_dll Library X3DAudio1_7.dll (which is needed by
L"C:\\users\\focht\\Local Settings\\Application
Data\\BeamNG\\BeamNG-Techdemo-0.3\\BeamNGSandbox.x86.dll") not found
--- snip ---
$ sha1sum BeamNG-Techdemo-0.3-setup.zip
21b29af0c77cf138ec69edf1c4cb0d4504bb2ed9 BeamNG-Techdemo-0.3-setup.zip
$ du -sh BeamNG-Techdemo-0.3-setup.zip
95M BeamNG-Techdemo-0.3-setup.zip
$ wine --version
wine-1.7.21-50-g10e6a66
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=42449
Bug ID: 42449
Summary: unimplemented function msvcr120.dll.fesetround called
in 32-bit code
Product: Wine
Version: 2.1
Hardware: x86
URL: https://play0ad.com/
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: version2013(a)openmailbox.org
Distribution: ---
Created attachment 57287
--> https://bugs.winehq.org/attachment.cgi?id=57287
backtrace (Windows XP)
Seeing if "O A.D." will run in Wine.
Running it the first time to get backtrace. See attachment "backtrace (Windows
XP)".
Running game a second time to get other terminal output:
wine pyrogenesis.exe
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fb8c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fa6c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f9c0 1 C) semi-stub
fixme:heap:RtlSetHeapInformation 0x110000 0 0x33fd40 4 stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f5dc 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f400 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f67c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33f74c 1 C) semi-stub
wine: Call from 0x7b43e046 to unimplemented function msvcr120.dll.fesetround,
aborting
fixme:msvcrt:__clean_type_info_names_internal (0x3b97d4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x39d3c0) stub
fixme:msvcrt:__clean_type_info_names_internal (0xd80af4) stub
AL lib: (EE) alc_cleanup: 1 device not closed
fixme:msvcrt:__clean_type_info_names_internal (0xc89764) stub
fixme:msvcrt:__clean_type_info_names_internal (0xbdc218) stub
fixme:msvcrt:__clean_type_info_names_internal (0x4a95facc) stub
fixme:msvcrt:__clean_type_info_names_internal (0x8d51a4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x9c0348) stub
fixme:msvcrt:__clean_type_info_names_internal (0x38137c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x103b30f4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x3675fc) stub
--
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=46338
Bug ID: 46338
Summary: advapi32/security test uses an unitialized variable in
test_process_security
Product: Wine
Version: 4.0-rc3
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: minor
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
Similar to bug 36094, same source file, different test.
==30817== Syscall param writev(vector[...]) points to uninitialised byte(s)
==30817== at 0x4356813: writev (writev.c:26)
==30817== by 0x7BC75457: send_request (server.c:228)
==30817== by 0x7BC76158: server_call_unlocked (server.c:288)
==30817== by 0x7BC761AD: wine_server_call (server.c:321)
==30817== by 0x7B4613A4: create_process (process.c:2363)
==30817== by 0x7B461BA0: CreateProcessInternalW (process.c:2764)
==30817== by 0x7B462218: CreateProcessInternalA (process.c:2836)
==30817== by 0x7B462315: CreateProcessA (process.c:2856)
==30817== by 0x4AB4149: test_process_security (security.c:3032)
==30817== by 0x4ABF458: func_security (security.c:7422)
==30817== by 0x4ACAC1E: run_test (test.h:617)
==30817== by 0x4ACB65C: main (test.h:701)
==30817== Address 0x495c2b4 is 124 bytes inside a block of size 324 alloc'd
==30817== at 0x7BC483AD: notify_alloc (heap.c:260)
==30817== by 0x7BC4B8D1: RtlAllocateHeap (heap.c:1726)
==30817== by 0x7B443394: HeapAlloc (heap.c:271)
==30817== by 0x7B45F425: alloc_object_attributes (process.c:2202)
==30817== by 0x7B461304: create_process (process.c:2350)
==30817== by 0x7B461BA0: CreateProcessInternalW (process.c:2764)
==30817== by 0x7B462218: CreateProcessInternalA (process.c:2836)
==30817== by 0x7B462315: CreateProcessA (process.c:2856)
==30817== by 0x4AB4149: test_process_security (security.c:3032)
==30817== by 0x4ABF458: func_security (security.c:7422)
==30817== by 0x4ACAC1E: run_test (test.h:617)
==30817== by 0x4ACB65C: main (test.h:701)
==30817== Uninitialised value was created by a client request
==30817== at 0x7BC4831C: mark_block_uninitialized (heap.c:214)
==30817== by 0x7BC4A643: initialize_block (heap.c:245)
==30817== by 0x7BC4B8E7: RtlAllocateHeap (heap.c:1727)
==30817== by 0x4AB33F1: test_process_security (security.c:2893)
==30817== by 0x4ABF458: func_security (security.c:7422)
==30817== by 0x4ACAC1E: run_test (test.h:617)
==30817== by 0x4ACB65C: main (test.h:701)
==30817==
--
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=44436
Bug ID: 44436
Summary: Call of Duty WWII crashes after splash screen
Product: Wine-staging
Version: 2.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mo78(a)abv.bg
CC: erich.e.hoover(a)wine-staging.com, michael(a)fds-team.de,
sebastian(a)fds-team.de
Distribution: ---
Created attachment 60378
--> https://bugs.winehq.org/attachment.cgi?id=60378
Wine staging crash log
The game installs fine but it crashes after the splash screen. I tested it with
Wine 2.21 staging.
--
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=30773
Bug #: 30773
Summary: Nibud C@shflow Manager 4 not starting
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cumulus0007(a)gmail.com
Classification: Unclassified
Nibud C@shflow Manager is an application to manage your finances and personal
budgets.
The application shows a welcome screen, where one can choose to evaluate or to
buy a license. When evaluation is started, it tries to import settings from
other applications. Once this is finished, the application reports an error has
occured and the application must close. No further information is provided.
fixme:ole:CoInitializeSecurity (0x45ae00,-1,(nil),(nil),6,2,(nil),64,(nil)) -
stub!
err:ole:CoGetClassObject class {24e669e1-e90f-4595-a012-b0fd3ccc5c5a} not
registered
err:ole:CoGetClassObject no class object {24e669e1-e90f-4595-a012-b0fd3ccc5c5a}
could be created for context 0x1
p11-kit: couldn't load module:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so:
/usr/lib/i386-linux-gnu/pkcs11/gnome-keyring-pkcs11.so: kan gedeeld
objectbestand niet openen: Bestand of map bestaat niet
fixme:shell:FileIconInit (true)
fixme:hnetcfg:fw_manager_GetIDsOfNames 0x2ca9e40
{00000000-0000-0000-0000-000000000000} 0x32f880 1 1043 0x32f8c4
fixme:resource:GetGuiResources (0xf8,0): stub
Wine 1.5.5
Linux 3.2.0-24-generic #39-Ubuntu SMP Mon May 21 16:52:17 UTC 2012 x86_64
x86_64 x86_64 GNU/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=21010
Summary: vc2005express install broken
Product: Wine
Version: 1.1.34
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Keywords: download, Installer, regression
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: hans(a)meelstraat.net
Regression testing points to:
bd4bc161475f600612fad898f09825d74d6368a9 is first bad commit
commit bd4bc161475f600612fad898f09825d74d6368a9
Author: Hans Leidekker <hans(a)codeweavers.com>
Date: Tue Nov 17 15:59:11 2009 +0100
msi: Don't set the ALLUSERS property.
:040000 040000 8964ea41515d9eaa19c0d38d44caa5b4661665e7
f3940f8962ebb38ca7f406d7fa1c65f44feaf03e M dlls
side note: git bisect run is awesome!
Reverting that in git lets the installer run to completion. Terminal output is
breathtakingly short:
Executing wine Ixpvc /t:c:\winetrickstmp\vc2005express.tmp /q:a /c:msiexec /i
vcsetup.msi VSEXTUI=1 ADDLOCAL=ALL REBOOT=ReallySuppress
err:msi:ITERATE_Actions Execution halted, action L"SxsInstallCA" returned 1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603
--
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=35134
Bug ID: 35134
Summary: Shroud of the Avatar: Forsaken Virtues installer waits
indefinitely for cmd.exe during execution of batch
files (argv[0] is not 'cmd.exe')
Product: Wine
Version: 1.7.8
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Classification: Unclassified
Hello folks,
the unwrapped installer spawns 'cmd.exe' to execute some batch files.
CreateProcessAsUserW() is used which just passes appname and cmdline to
CreateProcessW().
'appname' -> "C:\\windows\\system32\\cmd.exe"
'cmdline' -> "/C
\"C:\\users\\focht\\Temp\\{3CD9F337-4F1D-41C4-A1E4-86453C48EDC4}.bat\""
--- snip ---
$ WINEDEBUG=+tid,+seh,+relay,+cmd wine ./SotAInstaller.exe >>log.txt 2>&1
...
0024:Call KERNEL32.CreateProcessW(001481f8
L"C:\\windows\\system32\\msiexec.exe",001483f8 L" /i
\"C:\\users\\focht\\Application Data\\Portalarium\\Shroud of the Avatar
0.1.0\\install\\8E829DF\\ShroudPatchClientInstaller.msi\"
AI_SETUPEXEPATH=\"Z:\\home\\focht\\Downloads\\SotAInstaller.exe\"
SETUPEXEDIR=\"Z:\\home\\focht\\Downloads\\\" EXE_CMD_LINE=\"/exenoupdates
/exelang 0 /noprereqs
",00000000,00000000,00000000,00000020,00000000,00000000,0033f8d0,0033f918)
ret=0040f458
...
002b:Call KERNEL32.__wine_kernel_init() ret=7bc599ec
0024:Ret KERNEL32.CreateProcessW() retval=00000001 ret=0040f458
...
0039:Call advapi32.CreateProcessAsUserW(000000dc,00b54e98
L"C:\\windows\\system32\\cmd.exe",00b55388 L"/C
\"C:\\users\\focht\\Temp\\{3CD9F337-4F1D-41C4-A1E4-86453C48EDC4}.bat\"",00000000,00000000,00000001,08000000,00000000,00000000,00d5dc18,00d5dca8)
ret=0051c6ab
0039:fixme:advapi:CreateProcessAsUserW 0xdc L"C:\\windows\\system32\\cmd.exe"
L"/C \"C:\\users\\focht\\Temp\\{3CD9F337-4F1D-41C4-A1E4-86453C48EDC4}.bat\""
(nil) (nil) 1 0x08000000 (nil) (null) 0xd5dc18 0xd5dca8 - semi- stub
...
003b:Call KERNEL32.__wine_kernel_init() ret=7bc599ec
0039:Ret advapi32.CreateProcessAsUserW() retval=00000001 ret=0051c6ab
0039:Call KERNEL32.OpenProcess(00100000,00000000,0000003a) ret=0051c6d9
0039:Ret KERNEL32.OpenProcess() retval=000000e0 ret=0051c6d9
0039:Call KERNEL32.WaitForSingleObject(000000e0,ffffffff) ret=0051c6e8
...
003b:Starting process L"C:\\windows\\system32\\cmd.exe" (entryproc=0x7ed07208)
...
003b:trace:cmd:wmain Full commandline 'L"/C
\"C:\\users\\focht\\Temp\\{3CD9F337-4F1D-41C4-A1E4-86453C48EDC4}.bat\""'
003b:trace:cmd:wmain Command line parm:
'L"\"C:\\users\\focht\\Temp\\{3CD9F337-4F1D-41C4-A1E4-86453C48EDC4}.bat\""'
...
003b:trace:cmd:wmain Set L"=Z:" to L"Z:\\home\\focht\\Downloads"
...
003b:Call KERNEL32.WriteFile(00000010,00129540,00000024,0033ab10,00000000)
ret=7ed0063d
Microsoft Windows 5.1.2600 (1.7.8)
...
003b:Call KERNEL32.WriteFile(00000010,00129540,0000001a,0033a4d0,00000000)
ret=7ed0063d
Z:\home\focht\Downloads>
...
--- snip ---
For whatever reason 'cmd' expects the first argument of the command line to be
the executable name.
With the executable name missing from 'argv[0]', '/C' is eaten (opt_c remains
FALSE) and batch execution never takes place -> hangs on console input.
Source:
http://source.winehq.org/git/wine.git/blob/dd0b719a3a1419f34774fc4cd921f337…
--- snip ---
2329 int wmain (int argc, WCHAR *argvW[])
2330 {
...
2364 cmdLine = GetCommandLineW();
2365 WINE_TRACE("Full commandline '%s'\n", wine_dbgstr_w(cmdLine));
2366 args = 1; /* start at first arg, skipping cmd.exe itself */
...
--- snip ---
$ sha1sum SotAInstaller.exe
5163cd5d92cb6c8a50e5b8169ca428afdf2b76b7 SotAInstaller.exe
$du -sh SotAInstaller.exe
12M SotAInstaller.exe
$ wine --version
wine-1.7.8-220-g0bef543
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=37306
Bug ID: 37306
Summary: ApexDC crashes on start with wine configured as Vista
or higher
Product: Wine
Version: 1.7.26
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hk-wine(a)circlestorm.org
ApexDC 1.6.0 x86_64 version ( http://www.apexdc.net/download/ )
ApexDC shows a crash dialog box with no interesting info,
however it says that I should run it with the .pdb file to get
a debug trace that could be reported to the ApexDC team.
However, the .pdb file is already there so possibly that is
the FindFirstFileExW bug also causing the failed debug (Bug 37305).
$ wine ApexDC-x64.exe
fixme:wincodecs:PngDecoder_Block_GetCount stub
fixme:module:load_library unsupported flag(s) used (flags: 0x00000800)
fixme:advapi:RegisterTraceGuidsW (0x14031ca58, (nil),
{f7b697a3-4db5-4d3b-be71-c4d284e6592f}, 7, 0x1404824d0, (null), (null),
0x1404b55a8): stub
fixme:file:FindFirstFileExW options not implemented 0x00000000 0x00000001
--
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=36549
Bug ID: 36549
Summary: Trove crashes when run
Product: Wine
Version: 1.7.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lostcoderhaley(a)gmail.com
Created attachment 48645
--> http://bugs.winehq.org/attachment.cgi?id=48645
console output
Trion's Trove MMO alpha crashes on startup with an access violation. Trove is
not an XP compatible exe. Normally it should be run from Glyph to have the
login credentials, however, since Glyph rarely runs well enough to start trove
I had to run it directly. Since it crashes during early startup this does not
appear to have changed the crash dump.
--
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=39008
Bug ID: 39008
Summary: Trove: Crash on startup
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: philippe.groarke(a)gmail.com
This is a crash that seems related to vcrun2012 and setting winecfg to Vista.
Before you ask, the game isn't directx11 (it actually starts in openGL I
believe, it is an SDL2 game). The game is free so it makes for a nice testbed,
though you would need a Trion account to test (also free of course).
Steps to install trove:
- Download GlyphInstaller.
- winetricks vcrun2012
- Install Glyph. In glyph install Trove. Exit Glyph.
- winecfg, set windows version to Vista.
To test the game without Glyph, run like so:
~/.wine-trove/drive_c/Program Files/Glyph/Games/Trove/Live$ wine Trove.exe -k
{credentials} -C "[AuthServer] Address =
dal-c18-b01.dal.triongames.com:6560|dal-c18-b02.dal.triongames.com:6560|dal-c18-b03.dal.triongames.com:6560|dal-c18-b14.dal.triongames.com:6560|dal-c18-b15.dal.triongames.com:6560|dal-c18-b16.dal.triongames.com:6560|dal-c35-b05.dal.triongames.com:6560|dal-c35-b06.dal.triongames.com:6560|dal-c35-b07.dal.triongames.com:6560|dal-c35-b08.dal.triongames.com:6560"
Both the game and the crash reporter crash on startup.
Unhandled exception: page fault on read access to 0x00000020 in 32-bit code
(0x00509304).
Register dump:
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f
EIP:00509304 ESP:0033fdc0 EBP:0033fe10 EFLAGS:00010202( R- -- I - - - )
EAX:00000000 EBX:005f9fb8 ECX:000001ac EDX:0000000e
ESI:00000000 EDI:005fa070
Stack dump:
0x0033fdc0: 005f9fb8 005138dc 005fa070 00010641
0x0033fdd0: 00010001 00000000 00000000 00000000
0x0033fde0: 00000000 00000000 00000000 461c22fd
0x0033fdf0: 00640000 00000000 00000000 00000000
0x0033fe00: 00000000 00000000 00000000 005f9fb8
0x0033fe10: 0033fe30 004f7fc4 0033fe38 00000000
0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x00509304 in crashhandler (+0x109304) (0x0033fe10)
1 0x004f7fc4 in crashhandler (+0xf7fc3) (0x0033fe30)
2 0x00505253 in crashhandler (+0x105252) (0x0033fe54)
3 0x004d509a in crashhandler (+0xd5099) (0x0033fe8c)
4 0x005115c0 in crashhandler (+0x1115bf) (0x0033fed0)
5 0x7b85024c _call_process_entry+0xb() in kernel32 (0x0033fee8)
6 0x7b852e48 _start_process+0xa7() in kernel32 (0x0033ff28)
7 0x7bc6e57c _call_thread_func_wrapper+0xb() in ntdll (0x0033ff38)
8 0x7bc706ad _call_thread_func+0x6c() in ntdll (0x0033ffb8)
9 0x7bc6e542 _call_thread_entry_point+0x11() in ntdll (0x0033ffd8)
10 0x7bc46f2f _start_process+0x1e() in ntdll (0x0033ffe8)
0x00509304: movl 0x20(%eax),%ebx
Modules:
Module Address Debug info Name (231 modules)
PE 400000- 639000 Export crashhandler
PE 40001000-401be000 Stabs libwine.1.dylib
ELF 44296000-442c1000 Deferred iphlpapi<elf>
\-PE 442a0000-442b9000 \ iphlpapi
ELF 442c1000-442dc000 Deferred version<elf>
\-PE 442d0000-442d9000 \ version
ELF 44782000-447b4000 Deferred credui<elf>
\-PE 44790000-447b0000 \ credui
ELF 447db000-447ef000 Deferred psapi<elf>
\-PE 447e0000-447ee000 \ psapi
ELF 450c1000-450f4000 Deferred jsproxy<elf>
\-PE 450d0000-450dc000 \ jsproxy
ELF 45300000-4538a000 Deferred advapi32<elf>
\-PE 45310000-45365000 \ advapi32
ELF 4538a000-454b9000 Deferred comctl32<elf>
\-PE 45390000-45480000 \ comctl32
ELF 454b9000-4562b000 Deferred user32<elf>
\-PE 454c0000-455cb000 \ user32
ELF 4562b000-45760000 Deferred gdi32<elf>
\-PE 45630000-456e1000 \ gdi32
ELF 45760000-457b6000 Deferred winhttp<elf>
\-PE 45770000-45795000 \ winhttp
ELF 457b6000-45923000 Deferred oleaut32<elf>
\-PE 457c0000-4589e000 \ oleaut32
ELF 45923000-45a9e000 Deferred ole32<elf>
\-PE 45930000-45a20000 \ ole32
ELF 45a9e000-45b48000 Deferred rpcrt4<elf>
\-PE 45aa0000-45b10000 \ rpcrt4
ELF 45b48000-45bba000 Deferred dbghelp<elf>
\-PE 45b50000-45ba0000 \ dbghelp
ELF 45bba000-45bf8000 Deferred ws2_32<elf>
\-PE 45bc0000-45bef000 \ ws2_32
ELF 45bf8000-45ce2000 Deferred crypt32<elf>
\-PE 45c00000-45cba000 \ crypt32
ELF 45ce2000-45f61000 Deferred shell32<elf>
\-PE 45cf0000-45ef8000 \ shell32
ELF 45f61000-46002000 Deferred shlwapi<elf>
\-PE 45f70000-45fc8000 \ shlwapi
ELF 46002000-46184000 Deferred msvcp120<elf>
\-PE 46010000-460d8000 \ msvcp120
ELF 46184000-46285000 Deferred msvcr120<elf>
\-PE 46190000-46235000 \ msvcr120
PE 46285000-46306000 Deferred libfreetype.6.dylib
ELF 46306000-4632d000 Deferred imm32<elf>
\-PE 46310000-46326000 \ imm32
ELF 4632d000-463f7000 Deferred winemac<elf>
\-PE 46330000-463b1000 \ winemac
PE 49c46000-49cc5000 Deferred clouddocs
ELF 49cc5000-49d02000 Deferred uxtheme<elf>
\-PE 49cd0000-49cf8000 \ uxtheme
ELF 7b800000-7ba8f000 Stabs kernel32<elf>
\-PE 7b810000-7ba40000 \ kernel32
ELF 7bc00000-7bd03000 Stabs ntdll<elf>
\-PE 7bc10000-7bcb3000 \ ntdll
ELF 7bf00000-7bf03000 Deferred <wine-loader>
PE 90008000-90084000 Deferred htmlrendering
PE 90008000-90084000 Deferred htmlrendering
PE 90008000-90084000 Deferred htmlrendering
PE 90008000-90084000 Deferred htmlrendering
PE 90114000-9012e000 Deferred crashreportersupport
PE 90114000-9012e000 Deferred crashreportersupport
PE 90114000-9012e000 Deferred crashreportersupport
PE 90127000-9015d000 Deferred cfopendirectory
PE 901b8000-9025f000 Deferred securityfoundation
PE 9022f000-90239000 Deferred servicemanagement
PE 902c2000-90349000 Deferred hiservices
PE 903b3000-903cf000 Deferred langanalysis
PE 903b3000-903cf000 Deferred langanalysis
PE 903b3000-903cf000 Deferred langanalysis
PE 90d72000-90db0000 Deferred libsystem_m.dylib
PE 90da6000-90de8000 Deferred iconservices
PE 90da6000-90de8000 Deferred iconservices
PE 911b6000-911ee000 Deferred chunkinglibrary
PE 912f2000-91573000 Deferred quartzcore
PE 914db000-918ca000 Deferred coreimage
PE 914db000-918ca000 Deferred coreimage
PE 914db000-918ca000 Deferred coreimage
PE 917ce000-917e6000 Deferred protocolbuffer
PE 917ce000-917e6000 Deferred protocolbuffer
PE 91862000-9190b000 Deferred corewifi
PE 919b9000-91a0b000 Deferred applejpeg
PE 91a33000-91a3d000 Deferred libcorevmclient.dylib
PE 922b0000-9238e000 Deferred performanceanalysis
PE 922b0000-9238e000 Deferred performanceanalysis
PE 922b0000-9238e000 Deferred performanceanalysis
PE 92375000-923db000 Deferred navigationservices
PE 923f6000-927ac000 Deferred security
PE 923f6000-927ac000 Deferred security
PE 926d5000-926de000 Deferred help
PE 926d5000-926de000 Deferred help
PE 926d9000-92744000 Deferred languagemodeling
PE 92c85000-92cd4000 Deferred dictionaryservices
PE 92cbd000-92d17000 Deferred coreservicesinternal
PE 92cbd000-92d17000 Deferred coreservicesinternal
PE 92d9c000-92db1000 Deferred netauth
PE 92d9c000-92db1000 Deferred netauth
PE 92db5000-92dbd000 Deferred libsystem_sandbox.dylib
PE 92db5000-92dbd000 Deferred libsystem_sandbox.dylib
PE 92e25000-92e50000 Deferred libjpeg.dylib
PE 92e25000-92e50000 Deferred libjpeg.dylib
PE 92f40000-92f5f000 Deferred speechsynthesis
PE 92f40000-92f5f000 Deferred speechsynthesis
PE 93093000-930a9000 Deferred opengl
PE 93093000-930a9000 Deferred opengl
PE 930a2000-932b9000 Deferred audiotoolbox
PE 930a2000-932b9000 Deferred audiotoolbox
PE 930a2000-932b9000 Deferred audiotoolbox
PE 93283000-935ee000 Deferred coredata
PE 9351b000-9357e000 Deferred opencl
PE 93f1c000-9412f000 Deferred libobjc.a.dylib
PE 9410c000-9411e000 Deferred carbonsound
PE 94117000-94125000 Deferred print
PE 94117000-94125000 Deferred print
PE 9412f000-9415f000 Deferred libpng.dylib
PE 941e5000-941f5000 Deferred libcgcms.a.dylib
PE 941e5000-941f5000 Deferred libcgcms.a.dylib
PE 941ee000-94244000 Deferred debugsymbols
PE 944de000-944e5000 Deferred libcvmspluginsupport.dylib
PE 944de000-944e5000 Deferred libcvmspluginsupport.dylib
PE 9450c000-9453e000 Deferred multitouchsupport
PE 945a7000-945c2000 Deferred speechrecognitioncore
PE 945c2000-945f8000 Deferred libxslt.1.dylib
PE 945c2000-945f8000 Deferred libxslt.1.dylib
PE 945f0000-947e0000 Deferred coreui
PE 945f0000-947e0000 Deferred coreui
PE 94836000-94842000 Deferred commonpanels
PE 94836000-94842000 Deferred commonpanels
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 94e59000-95366000 Deferred foundation
PE 954f4000-95514000 Deferred libcmph.dylib
PE 95508000-95550000 Deferred libglimage.dylib
PE 95508000-95550000 Deferred libglimage.dylib
PE 95562000-959e8000 Deferred vimage
PE 9599e000-95a07000 Deferred libtiff.dylib
PE 959fa000-95a29000 Deferred apple80211
PE 959fa000-95a29000 Deferred apple80211
PE 95a1f000-95eb1000 Deferred coregraphics
PE 95a1f000-95eb1000 Deferred coregraphics
PE 95e3e000-95e6f000 Deferred generationalstorage
PE 95e6b000-95e71000 Deferred audiounit
PE 95e6b000-95e71000 Deferred audiounit
PE 95e6c000-95f71000 Deferred iobluetooth
PE 962b0000-962dd000 Deferred openscripting
PE 962b0000-962dd000 Deferred openscripting
PE 962cc000-962ef000 Deferred libsystem_asl.dylib
PE 96699000-966bc000 Deferred libgl.dylib
PE 96699000-966bc000 Deferred libgl.dylib
PE 967af000-967bf000 Deferred commonauth
PE 9680d000-96877000 Deferred libfontregistry.dylib
PE 96923000-96926000 Deferred accelerate
PE 96923000-96926000 Deferred accelerate
PE 969ba000-96a1b000 Deferred libsystem_network.dylib
PE 96aab000-96ab2000 Deferred libsystem_coreservices.dylib
PE 96aae000-96b64000 Deferred systemconfiguration
PE 96b2e000-96c81000 Deferred libfontparser.dylib
PE 96b2e000-96c81000 Deferred libfontparser.dylib
PE 96c78000-96d28000 Deferred searchkit
PE 96d16000-96d26000 Deferred speechrecognition
PE 96d1e000-96d41000 Deferred corebluetooth
PE 96d1e000-96d41000 Deferred corebluetooth
PE 96d32000-96d83000 Deferred libglu.dylib
PE 96e68000-96e72000 Deferred libheimdal-asn1.dylib
PE 96e68000-96e72000 Deferred libheimdal-asn1.dylib
PE 96e6d000-96e70000 Deferred carbon
PE 96e6d000-96e70000 Deferred carbon
PE 96e70000-96f48000 Deferred osservices
PE 96e70000-96f48000 Deferred osservices
PE 96efb000-96f1d000 Deferred liblzma.5.dylib
PE 96efb000-96f1d000 Deferred liblzma.5.dylib
PE 96f76000-96f98000 Deferred libsystem_malloc.dylib
PE 972d5000-972f2000 Deferred opendirectory
PE 972d5000-972f2000 Deferred opendirectory
PE 97346000-9734d000 Deferred libsystem.b.dylib
PE 97348000-97350000 Deferred applicationservices
PE 97349000-973e9000 Deferred ats
PE 973ca000-97491000 Deferred ink
PE 973ca000-97491000 Deferred ink
PE 97468000-977dc000 Deferred carboncore
PE 97770000-977ff000 Deferred ae
PE 977d5000-977db000 Deferred libradiance.dylib
PE 97b15000-97ca6000 Deferred desktopservicespriv
PE 97b15000-97ca6000 Deferred desktopservicespriv
PE 97c2c000-97c52000 Deferred sharing
PE 97c2c000-97c52000 Deferred sharing
PE 97c2c000-97c52000 Deferred sharing
PE 97c59000-97d03000 Deferred corewlan
PE 97c59000-97d03000 Deferred corewlan
PE 97ce0000-97dd8000 Deferred libvmisc.dylib
PE 97dd2000-97de2000 Deferred libgfxshared.dylib
PE 98d96000-98da1000 Deferred tcc
PE 98d96000-98da1000 Deferred tcc
PE 98eb3000-98f01000 Deferred gss
PE 98eb3000-98f01000 Deferred gss
PE 99081000-9915a000 Deferred colorsync
PE 9911c000-991a6000 Deferred printcore
PE 9911c000-991a6000 Deferred printcore
PE 9917a000-99419000 Deferred libicucore.a.dylib
PE 99373000-993ea000 Deferred coreaudio
PE 994d2000-994e0000 Deferred libunwind.dylib
PE 99ae9000-99c7b000 Deferred uifoundation
PE 99ebd000-99edc000 Deferred liblinearalgebra.dylib
PE 99ebd000-99edc000 Deferred liblinearalgebra.dylib
PE 99f42000-9a08d000 Deferred backup
PE 99f42000-9a08d000 Deferred backup
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9bd8f000-9be34000 Deferred coresymbolication
PE 9bed0000-9bee0000 Deferred libcopyfile.dylib
PE 9beda000-9bf25000 Deferred corevideo
PE 9beda000-9bf25000 Deferred corevideo
PE 9beda000-9bf25000 Deferred corevideo
PE 9bf37000-9bf4a000 Deferred libbz2.1.0.dylib
PE 9bf37000-9bf4a000 Deferred libbz2.1.0.dylib
PE 9bfc3000-9c027000 Deferred remoteviewservices
PE 9bfc3000-9c027000 Deferred remoteviewservices
PE 9bfc3000-9c027000 Deferred remoteviewservices
PE 9c025000-9c083000 Deferred symbolication
PE 9c025000-9c083000 Deferred symbolication
PE 9c025000-9c083000 Deferred symbolication
PE 9c068000-9c200000 Deferred libblas.dylib
PE 9c1db000-9c1e4000 Deferred libgif.dylib
PE 9c34d000-9c4c5000 Deferred launchservices
Threads:
process tid prio (all id:s are in hex)
00000008 Trove.exe
00000009 0
0000000e services.exe
0000001f 0
0000001e 0
00000014 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001d 0
0000001c 0
00000019 0
00000018 0
00000013 0
0000001a plugplay.exe
00000021 0
00000020 0
0000001b 0
00000022 explorer.exe
00000026 0
00000025 0
00000024 0
00000023 0
00000027 (D) C:\Program Files\Glyph\Games\Trove\Live\CrashHandler.exe
00000028 0 <==
00000029 winedbg.exe
0000002a 0
System information:
Wine build: wine-1.7.48-30-g5bd9d58
Platform: i386
Host system: Darwin
Host version: 14.4.0
Unhandled exception: page fault on read access to 0x00000020 in 32-bit code
(0x008b4b64).
Register dump:
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f
EIP:008b4b64 ESP:0032fdbc EBP:0032fe0c EFLAGS:00010202( R- -- I - - - )
EAX:00000000 EBX:00c921d8 ECX:000001ac EDX:0000000e
ESI:00000000 EDI:00c92290
Stack dump:
0x0032fdbc: 00c921d8 00b5458c 00c92290 00010641
0x0032fdcc: 00010001 00000000 00000000 00000000
0x0032fddc: 00000000 00000000 00000000 00c922b0
0x0032fdec: 0094a51b 00000000 00000000 00000000
0x0032fdfc: 00000000 00000000 00000000 00000001
0x0032fe0c: 0032fe30 0079bb27 0032fe28 00000000
0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x008b4b64 in trove (+0x4b4b64) (0x0032fe0c)
1 0x0079bb27 in trove (+0x39bb26) (0x0032fe30)
2 0x00780553 in trove (+0x380552) (0x0032fe54)
3 0x004f9b0a in trove (+0xf9b09) (0x0032fe8c)
4 0x00b45b02 in trove (+0x745b01) (0x0032fed0)
5 0x7b85024c _call_process_entry+0xb() in kernel32 (0x0032fee8)
6 0x7b852e48 _start_process+0xa7() in kernel32 (0x0032ff28)
7 0x7bc6e57c _call_thread_func_wrapper+0xb() in ntdll (0x0032ff38)
8 0x7bc706ad _call_thread_func+0x6c() in ntdll (0x0032ffb8)
9 0x7bc6e542 _call_thread_entry_point+0x11() in ntdll (0x0032ffd8)
10 0x7bc46f2f _start_process+0x1e() in ntdll (0x0032ffe8)
0x008b4b64: movl 0x20(%eax),%ebx
Modules:
Module Address Debug info Name (233 modules)
PE 330000- 36d000 Deferred binkw32
PE 400000- df5000 Export trove
PE e00000- edd000 Deferred iggy_w32
PE 10000000-10356000 Deferred d3dcompiler_47
PE 3b400000-3b432000 Deferred steam_api
PE 40001000-401be000 Stabs libwine.1.dylib
ELF 44104000-4418e000 Deferred advapi32<elf>
\-PE 44110000-44169000 \ advapi32
ELF 4418e000-4440d000 Deferred shell32<elf>
\-PE 44190000-443a4000 \ shell32
ELF 4440d000-444ae000 Deferred shlwapi<elf>
\-PE 44410000-44474000 \ shlwapi
ELF 444ae000-44620000 Deferred user32<elf>
\-PE 444b0000-445c0000 \ user32
ELF 44620000-44755000 Deferred gdi32<elf>
\-PE 44630000-446d6000 \ gdi32
ELF 4476f000-4478a000 Deferred version<elf>
\-PE 44770000-44787000 \ version
ELF 4478a000-447b5000 Deferred iphlpapi<elf>
\-PE 44790000-447ad000 \ iphlpapi
ELF 447b5000-447cb000 Deferred d3d11<elf>
\-PE 447c0000-447c9000 \ d3d11
ELF 447cb000-447f8000 Deferred msacm32<elf>
\-PE 447d0000-447f1000 \ msacm32
ELF 45800000-458cd000 Deferred msvcrt<elf>
\-PE 45810000-45890000 \ msvcrt
ELF 458cd000-45977000 Deferred rpcrt4<elf>
\-PE 458d0000-4593f000 \ rpcrt4
ELF 45977000-45ae4000 Deferred oleaut32<elf>
\-PE 45980000-45a5f000 \ oleaut32
ELF 45ae4000-45c5f000 Deferred ole32<elf>
\-PE 45af0000-45be1000 \ ole32
ELF 45c5f000-45d25000 Deferred winmm<elf>
\-PE 45c60000-45d0e000 \ winmm
ELF 45d25000-45d4c000 Deferred imm32<elf>
\-PE 45d30000-45d45000 \ imm32
ELF 45d4c000-45ece000 Deferred msvcp120<elf>
\-PE 45d50000-45e22000 \ msvcp120
ELF 45ece000-45fcf000 Deferred msvcr120<elf>
\-PE 45ed0000-45f7f000 \ msvcr120
ELF 45fcf000-4600d000 Deferred ws2_32<elf>
\-PE 45fd0000-46004000 \ ws2_32
ELF 4600d000-460f7000 Deferred crypt32<elf>
\-PE 46010000-460cf000 \ crypt32
PE 460f7000-46137000 Deferred libncurses.5.4.dylib
PE 46137000-461b8000 Deferred libfreetype.6.dylib
ELF 461b8000-46282000 Deferred winemac<elf>
\-PE 461c0000-4623c000 \ winemac
PE 49bba000-49c39000 Deferred clouddocs
PE 6c740000-6c829000 Deferred sdl2
ELF 7a800000-7a95f000 Deferred opengl32<elf>
\-PE 7a810000-7a8b8000 \ opengl32
ELF 7b800000-7ba8f000 Stabs kernel32<elf>
\-PE 7b810000-7ba40000 \ kernel32
ELF 7bc00000-7bd03000 Stabs ntdll<elf>
\-PE 7bc10000-7bcb3000 \ ntdll
ELF 7bf00000-7bf03000 Deferred <wine-loader>
PE 90008000-90084000 Deferred htmlrendering
PE 90008000-90084000 Deferred htmlrendering
PE 90008000-90084000 Deferred htmlrendering
PE 90008000-90084000 Deferred htmlrendering
PE 90114000-9012e000 Deferred crashreportersupport
PE 90114000-9012e000 Deferred crashreportersupport
PE 90114000-9012e000 Deferred crashreportersupport
PE 90127000-9015d000 Deferred cfopendirectory
PE 901b8000-9025f000 Deferred securityfoundation
PE 9022f000-90239000 Deferred servicemanagement
PE 902c2000-90349000 Deferred hiservices
PE 903b3000-903cf000 Deferred langanalysis
PE 903b3000-903cf000 Deferred langanalysis
PE 903b3000-903cf000 Deferred langanalysis
PE 90d72000-90db0000 Deferred libsystem_m.dylib
PE 90da6000-90de8000 Deferred iconservices
PE 90da6000-90de8000 Deferred iconservices
PE 911b6000-911ee000 Deferred chunkinglibrary
PE 912f2000-91573000 Deferred quartzcore
PE 914db000-918ca000 Deferred coreimage
PE 914db000-918ca000 Deferred coreimage
PE 914db000-918ca000 Deferred coreimage
PE 917ce000-917e6000 Deferred protocolbuffer
PE 917ce000-917e6000 Deferred protocolbuffer
PE 91862000-9190b000 Deferred corewifi
PE 919b9000-91a0b000 Deferred applejpeg
PE 91a33000-91a3d000 Deferred libcorevmclient.dylib
PE 922b0000-9238e000 Deferred performanceanalysis
PE 922b0000-9238e000 Deferred performanceanalysis
PE 922b0000-9238e000 Deferred performanceanalysis
PE 92375000-923db000 Deferred navigationservices
PE 923f6000-927ac000 Deferred security
PE 923f6000-927ac000 Deferred security
PE 926d5000-926de000 Deferred help
PE 926d5000-926de000 Deferred help
PE 926d9000-92744000 Deferred languagemodeling
PE 92c85000-92cd4000 Deferred dictionaryservices
PE 92cbd000-92d17000 Deferred coreservicesinternal
PE 92cbd000-92d17000 Deferred coreservicesinternal
PE 92d9c000-92db1000 Deferred netauth
PE 92d9c000-92db1000 Deferred netauth
PE 92db5000-92dbd000 Deferred libsystem_sandbox.dylib
PE 92db5000-92dbd000 Deferred libsystem_sandbox.dylib
PE 92e25000-92e50000 Deferred libjpeg.dylib
PE 92e25000-92e50000 Deferred libjpeg.dylib
PE 92f40000-92f5f000 Deferred speechsynthesis
PE 92f40000-92f5f000 Deferred speechsynthesis
PE 93093000-930a9000 Deferred opengl
PE 93093000-930a9000 Deferred opengl
PE 930a2000-932b9000 Deferred audiotoolbox
PE 930a2000-932b9000 Deferred audiotoolbox
PE 930a2000-932b9000 Deferred audiotoolbox
PE 93283000-935ee000 Deferred coredata
PE 9351b000-9357e000 Deferred opencl
PE 93f1c000-9412f000 Deferred libobjc.a.dylib
PE 9410c000-9411e000 Deferred carbonsound
PE 94117000-94125000 Deferred print
PE 94117000-94125000 Deferred print
PE 9412f000-9415f000 Deferred libpng.dylib
PE 941e5000-941f5000 Deferred libcgcms.a.dylib
PE 941e5000-941f5000 Deferred libcgcms.a.dylib
PE 941ee000-94244000 Deferred debugsymbols
PE 944de000-944e5000 Deferred libcvmspluginsupport.dylib
PE 944de000-944e5000 Deferred libcvmspluginsupport.dylib
PE 9450c000-9453e000 Deferred multitouchsupport
PE 945a7000-945c2000 Deferred speechrecognitioncore
PE 945c2000-945f8000 Deferred libxslt.1.dylib
PE 945c2000-945f8000 Deferred libxslt.1.dylib
PE 945f0000-947e0000 Deferred coreui
PE 945f0000-947e0000 Deferred coreui
PE 94836000-94842000 Deferred commonpanels
PE 94836000-94842000 Deferred commonpanels
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 949ac000-94ff4000 Deferred facecore
PE 94e59000-95366000 Deferred foundation
PE 954f4000-95514000 Deferred libcmph.dylib
PE 95508000-95550000 Deferred libglimage.dylib
PE 95508000-95550000 Deferred libglimage.dylib
PE 95562000-959e8000 Deferred vimage
PE 9599e000-95a07000 Deferred libtiff.dylib
PE 959fa000-95a29000 Deferred apple80211
PE 959fa000-95a29000 Deferred apple80211
PE 95a1f000-95eb1000 Deferred coregraphics
PE 95a1f000-95eb1000 Deferred coregraphics
PE 95e3e000-95e6f000 Deferred generationalstorage
PE 95e6b000-95e71000 Deferred audiounit
PE 95e6b000-95e71000 Deferred audiounit
PE 95e6c000-95f71000 Deferred iobluetooth
PE 962b0000-962dd000 Deferred openscripting
PE 962b0000-962dd000 Deferred openscripting
PE 962cc000-962ef000 Deferred libsystem_asl.dylib
PE 96699000-966bc000 Deferred libgl.dylib
PE 96699000-966bc000 Deferred libgl.dylib
PE 967af000-967bf000 Deferred commonauth
PE 9680d000-96877000 Deferred libfontregistry.dylib
PE 96923000-96926000 Deferred accelerate
PE 96923000-96926000 Deferred accelerate
PE 969ba000-96a1b000 Deferred libsystem_network.dylib
PE 96aab000-96ab2000 Deferred libsystem_coreservices.dylib
PE 96aae000-96b64000 Deferred systemconfiguration
PE 96b2e000-96c81000 Deferred libfontparser.dylib
PE 96b2e000-96c81000 Deferred libfontparser.dylib
PE 96c78000-96d28000 Deferred searchkit
PE 96d16000-96d26000 Deferred speechrecognition
PE 96d1e000-96d41000 Deferred corebluetooth
PE 96d1e000-96d41000 Deferred corebluetooth
PE 96d32000-96d83000 Deferred libglu.dylib
PE 96e68000-96e72000 Deferred libheimdal-asn1.dylib
PE 96e68000-96e72000 Deferred libheimdal-asn1.dylib
PE 96e6d000-96e70000 Deferred carbon
PE 96e6d000-96e70000 Deferred carbon
PE 96e70000-96f48000 Deferred osservices
PE 96e70000-96f48000 Deferred osservices
PE 96efb000-96f1d000 Deferred liblzma.5.dylib
PE 96efb000-96f1d000 Deferred liblzma.5.dylib
PE 96f76000-96f98000 Deferred libsystem_malloc.dylib
PE 972d5000-972f2000 Deferred opendirectory
PE 972d5000-972f2000 Deferred opendirectory
PE 97346000-9734d000 Deferred libsystem.b.dylib
PE 97348000-97350000 Deferred applicationservices
PE 97349000-973e9000 Deferred ats
PE 973ca000-97491000 Deferred ink
PE 973ca000-97491000 Deferred ink
PE 97468000-977dc000 Deferred carboncore
PE 97770000-977ff000 Deferred ae
PE 977d5000-977db000 Deferred libradiance.dylib
PE 97b15000-97ca6000 Deferred desktopservicespriv
PE 97b15000-97ca6000 Deferred desktopservicespriv
PE 97c2c000-97c52000 Deferred sharing
PE 97c2c000-97c52000 Deferred sharing
PE 97c2c000-97c52000 Deferred sharing
PE 97c59000-97d03000 Deferred corewlan
PE 97c59000-97d03000 Deferred corewlan
PE 97ce0000-97dd8000 Deferred libvmisc.dylib
PE 97dd2000-97de2000 Deferred libgfxshared.dylib
PE 98d96000-98da1000 Deferred tcc
PE 98d96000-98da1000 Deferred tcc
PE 98eb3000-98f01000 Deferred gss
PE 98eb3000-98f01000 Deferred gss
PE 99081000-9915a000 Deferred colorsync
PE 9911c000-991a6000 Deferred printcore
PE 9911c000-991a6000 Deferred printcore
PE 9917a000-99419000 Deferred libicucore.a.dylib
PE 99373000-993ea000 Deferred coreaudio
PE 994d2000-994e0000 Deferred libunwind.dylib
PE 99ae9000-99c7b000 Deferred uifoundation
PE 99ebd000-99edc000 Deferred liblinearalgebra.dylib
PE 99ebd000-99edc000 Deferred liblinearalgebra.dylib
PE 99f42000-9a08d000 Deferred backup
PE 99f42000-9a08d000 Deferred backup
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9b957000-9beb4000 Deferred hitoolbox
PE 9bd8f000-9be34000 Deferred coresymbolication
PE 9bed0000-9bee0000 Deferred libcopyfile.dylib
PE 9beda000-9bf25000 Deferred corevideo
PE 9beda000-9bf25000 Deferred corevideo
PE 9beda000-9bf25000 Deferred corevideo
PE 9bf37000-9bf4a000 Deferred libbz2.1.0.dylib
PE 9bf37000-9bf4a000 Deferred libbz2.1.0.dylib
PE 9bfc3000-9c027000 Deferred remoteviewservices
PE 9bfc3000-9c027000 Deferred remoteviewservices
PE 9bfc3000-9c027000 Deferred remoteviewservices
PE 9c025000-9c083000 Deferred symbolication
PE 9c025000-9c083000 Deferred symbolication
PE 9c025000-9c083000 Deferred symbolication
PE 9c068000-9c200000 Deferred libblas.dylib
PE 9c1db000-9c1e4000 Deferred libgif.dylib
PE 9c34d000-9c4c5000 Deferred launchservices
Threads:
process tid prio (all id:s are in hex)
00000008 (D) C:\Program Files\Glyph\Games\Trove\Live\Trove.exe
00000009 0 <==
0000000e services.exe
0000001f 0
0000001e 0
00000014 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001d 0
0000001c 0
00000019 0
00000018 0
00000013 0
0000001a plugplay.exe
00000021 0
00000020 0
0000001b 0
00000022 explorer.exe
00000026 0
00000025 0
00000024 0
00000023 0
System information:
Wine build: wine-1.7.48-30-g5bd9d58
Platform: i386
Host system: Darwin
Host version: 14.4.0
Here is a debug-all output that gives a little more information it seems:
Backtrace:
=>0 0x008b4b64 in trove (+0x4b4b64) (0x0033fdcc)
1 0x0079bb27 in trove (+0x39bb26) (0x0033fdf0)
2 0x00780553 in trove (+0x380552) (0x0033fe14)
3 0x004f9b0a in trove (+0xf9b09) (0x0033fe58)
4 0x7bc5b73a _relay_call+0x39() in ntdll (0x0033fe7c)
5 0x4568039d .L__wine_spec_relay_entry_point_786+0x14() in msvcr120
(0x0033fed0)
6 0x00000000 (0x0033fed0)
7 0x7b85024c _call_process_entry+0xb() in kernel32 (0x0033fee8)
8 0x7b852e48 _start_process+0xa7() in kernel32 (0x0033ff28)
9 0x7bc6e57c _call_thread_func_wrapper+0xb() in ntdll (0x0033ff38)
10 0x7bc706ad _call_thread_func+0x6c() in ntdll (0x0033ffb8)
11 0x7bc6e542 _call_thread_entry_point+0x11() in ntdll (0x0033ffd8)
12 0x7bc46f2f _start_process+0x1e() in ntdll (0x0033ffe8)
--
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=37583
Bug ID: 37583
Summary: Trion's Glyph MMO manager crashes unimplemented
function
msvcr110.dll.?_GetConcurrency@details@Concurrency@@YAI
XZ
Product: Wine
Version: 1.7.31
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,
as the summary says.
This appeared with recent client update.
--- snip ---
$ pwd
/home/focht/wine-games/wineprefix-trion/drive_c/Program Files/Glyph
$ wine ./GlyphClient.exe
...
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fd34 63 ) semi-stub
fixme:msvcp:locale__Locimp__Makexloc (0x33fd34 63 0x2736c78 (nil)) semi-stub
fixme:msvcp:locale__Locimp__Makewloc (0x33fd34 63 0x2736c78 (nil)) semi-stub
fixme:msvcp:locale__Locimp__Makeushloc (0x33fd34 63 0x2736c78 (nil)) semi-stub
wine: Call from 0x7b83b1d3 to unimplemented function
msvcr110.dll.?_GetConcurrency@details@Concurrency@@YAIXZ, aborting
wine: Unimplemented function
msvcr110.dll.?_GetConcurrency@details@Concurrency@@YAIXZ called at address
0x7b83b1d3 (thread 0009), starting debugger...
--- snip ---
Source:
http://source.winehq.org/git/wine.git/blob/bcbd83d1543a345fca994266eff224fb…
$ sha1sum GlyphInstall-0-1.exe
d56109ec05c665cc2e745c8d06265a834f0a7f65 GlyphInstall-0-1.exe
$ du -sh GlyphInstall-0-1.exe
31M GlyphInstall-0-1.exe
$ wine --version
wine-1.7.31-47-g516ed8e
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=39076
Bug ID: 39076
Summary: Trion Glyph (MMPORG Defiance) installer crashes when
trying to run through wine
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: whiskeykitten(a)gmail.com
Distribution: ---
When attempting to install the Trion GLyph installer to use their MMO manager,
to play the game Defiance - it will not run the installer. It crashes out, but
gives no error message (it says "Loading.... Please Wait" but even if left to
load for hours, it does not load any error information.
--
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=39114
Bug ID: 39114
Summary: Trion's Glyph MMO manager installer crashes.
"Unhandled exception: unimplemented function
msvcr110.dll.?"
Product: Wine
Version: 1.7.26
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: version
Assignee: wine-bugs(a)winehq.org
Reporter: harsimar.singh(a)outlook.com
Created attachment 52117
--> https://bugs.winehq.org/attachment.cgi?id=52117
Glyph Error after crashing
I tried to download to trion's glyph using wine to play archeage but everytime
i tried to install it it would crash and give me an error."Unhandled exception:
unimplemented function msvcr110.dll.?" you can find that in the attachment.
--
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=18797
Summary: CATIAV5R19: Fails to install on Wine higher than
1.1.18
Product: Wine
Version: 1.1.22
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukasz.wojnilowicz(a)gmail.com
Created an attachment (id=21574)
--> (http://bugs.winehq.org/attachment.cgi?id=21574)
Output from terminal
I'm using Wine 1.1.22 (compiled from source using gcc version 4.3.2 20081105
(Red Hat 4.3.2-7) ) on Fedora 10 i386.
The problem is that CATIAV5R19 crashes during setup (doesn't even start to copy
files). This is probably regression because this program installs fine on
Wine-1.1.18 (not in 1.1.19 and later).
--
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=33006
Bug #: 33006
Summary: Installation of Garmin Training Center 3.6.5 fails
Product: Wine
Version: 1.5.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: par.johansson8(a)comhem.se
Classification: Unclassified
Installation of Garmin Training Center 3.6.5 fails with "You must be a local
administrator to run this application".
According to the app database
(http://appdb.winehq.org/objectManager.php?sClass=version&iId=26537), at least
installation should work.
I use Fedora 17.
Best regards,
Pär Johansson
--
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=36066
Bug ID: 36066
Summary: Basecamp 4.25 : If an application complains about a
lack of administrator privileges
Product: Wine
Version: 1.6-rc2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: sbec(a)heustoeffel.ch
Garmin BaseCamp 4.25 complains about a lack of administrator privileges.
Wont run under Win98 (as many Threads say to do)
How can i bypass this ?
--
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=33357
Bug #: 33357
Summary: garmin basecamp 4.1.2 "requires administrator
privileges" and will not run
Product: Wine
Version: 1.5.27
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.duncan(a)ncl.ac.uk
Classification: Unclassified
Garmin Basecamp 4.1.2
If run with wine configured to execute as anything from windows xp onwards:
the program basecamp_412.exe halts with a message saying
"you must be local administrator".
If run with wine configured as an earlier version of windows than xp the
program halts with message
"unsupported operating system"
--
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=29938
Bug #: 29938
Summary: signcode tool from .NET Framework SDK 1.1 crashes due
to unimplemented function
cryptui.dll.CryptUIWizDigitalSign
Product: Wine
Version: 1.4-rc4
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello,
running the "signcode" tool from .NET Framework 1.1 SDK results in:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Microsoft.NET/SDK/v1.1/Bin
$ wine ./signcode.exe
fixme:ole:CoInitializeSecurity (0x45adf0,-1,(nil),(nil),6,2,(nil),64,(nil)) -
stub!
err:ole:CoGetClassObject class {24e669e1-e90f-4595-a012-b0fd3ccc5c5a} not
registered
err:ole:CoGetClassObject no class object {24e669e1-e90f-4595-a012-b0fd3ccc5c5a}
could be created for context 0x1
wine: Call from 0x7b83924f to unimplemented function
cryptui.dll.CryptUIWizDigitalSign, aborting
wine: Unimplemented function cryptui.dll.CryptUIWizDigitalSign called at
address 0x7b83924f (thread 0009), starting debugger...
--- snip ---
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=44419
Bug ID: 44419
Summary: Hog4PC doesn't install
Product: Wine
Version: 3.0-rc6
Hardware: x86
URL: http://www.highend.com/pub/support/controllers/softwar
e/Hog4PC_3-6-1-1440.msi
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 60348
--> https://bugs.winehq.org/attachment.cgi?id=60348
wine log
A user reported problems with this program at
https://forum.winehq.org/viewtopic.php?f=9&t=30089.
I tested it, and on both wine-3.0 and wine-2.21-staging it doesn't install.
--
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=38367
Bug ID: 38367
Summary: Desura client 0.0.20.2 crashes on unimplemented
function msvcr120.dll.strtoull
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
as the summary says.
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/Desura
$ wine ./desura
wine: Call from 0x7b83b64b to unimplemented function msvcr120.dll.strtoull,
aborting
fixme:msvcrt:__clean_type_info_names_internal (0x3cd7e4) stub
fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for 80000100
--- snip ---
'winetricks -q vcrun2013' obviously works around.
$ sha1sum DesuraInstaller.exe
a7dba809e121ba210bcfb0d298a2bf9bc89179ac DesuraInstaller.exe
$ du -sh DesuraInstaller.exe
40M DesuraInstaller.exe
$ wine --version
wine-1.7.40-29-gc1c108f
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=25570
Summary: Crash when attempting to log in to Desura client
Product: Wine
Version: 1.3.9
Platform: x86
URL: http://www.desura.com/DesuraInstaller.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leighmanthegreat(a)hotmail.com
Created an attachment (id=32559)
--> (http://bugs.winehq.org/attachment.cgi?id=32559)
Wine 1.3.9 terminal log
A digital distribution service like Steam
Ubuntu 10.10
When trying to log on it crashes.
Terminal log 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=33109
Bug #: 33109
Summary: Desura fails to update
Product: Wine
Version: 1.5.25
Platform: x86
URL: http://www.desura.com/DesuraInstaller.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Classification: Unclassified
After doing a new install of desura in a clean prefix, I get the following
error trying to start it: "Failed to update Desura: Check sum failed on file
\\desura.exe [49.0]"
After running it for the first time desura.exe is replaced by an empty file, so
I can't try to start it at all.
--
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=37536
Bug ID: 37536
Summary: Desura needs implementation of
msvcr120.dll.___lc_locale_name_func
Product: Wine
Version: 1.7.30
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
Assignee: wine-bugs(a)winehq.org
Reporter: sebastian(a)fds-team.de
Distribution: ---
Found while trying to reproduce bug 37527.
Since wine has now a msvcr120 dll (
http://source.winehq.org/git/wine.git/commit/c8c810c21020bd0079ff0adcfee95e…
), the game doesn't start anymore:
--- snip ---
$ WINEPREFIX=~/.wine-desura ./wine ~/.wine-desura/drive_c/Program\
Files/Desura/desura.exe
[...]
wine: Call from 0x7b838cbd to unimplemented function
msvcr120.dll.___lc_locale_name_func, aborting
fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for 80000100
--- snip ---
Settings msvcr120 to native obviously works around this issue.
$ git describe origin/master
wine-1.7.30-121-g6fe4d9e
$ sha1sum DesuraInstaller.exe
8694863a4fe8989de4e57d249ba23e637dc36cd7 DesuraInstaller.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=36073
Bug ID: 36073
Summary: Unimplemented function
KERNEL32.dll.GetFinalPathNameByHandleW
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
Onedrive.exe says that and crushed.
--
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=35375
Bug ID: 35375
Summary: Unimplemented function COMCTL32.dll.380
Product: Wine
Version: 1.7.10
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: denis.bonnenfant(a)diderot.org
Classification: Unclassified
Created attachment 47178
--> http://bugs.winehq.org/attachment.cgi?id=47178
backtrace
Solidworks 2013 lauches at start sldprocmon.exe, a monitor normally displayed
in systray.
Nothing is diplayed, but it takes 100% of 1 cpu. It regularly crashes with this
error:
Unimplemented function COMCTL32.dll.380
--
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=32711
Bug #: 32711
Summary: BSAopt fails with "Unhandled exception: unimplemented
function ADVAPI32.dll.RegSetKeyValueA called"
Product: Wine
Version: 1.5.21
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: daniel.santos(a)pobox.com
Classification: Unclassified
Created attachment 43163
--> http://bugs.winehq.org/attachment.cgi?id=43163
patch to add RegSetKeyValue{A,W}
BSAopt is "Bethesda Archive Management and Optimization", the tool for managing
archives for their games (Skyrim, Fallout, etc., link here:
http://skyrim.nexusmods.com/mods/247). I guess not many people use this
function so it hasn't really been hit before.
I've only run the tests for dlls/advapi32/tests/registry.c, a menial test of
regedit and a few apps for testing, but no problems are apparent.
--
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=34851
Bug #: 34851
Summary: 64-bit Autodesk Fusion 360 installer needs kernel32
GetFinalPathNameByHandleA/W
Product: Wine
Version: 1.7.5
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: focht(a)gmx.net
Classification: Unclassified
Hello folks,
as the summary says...
An appdb user mentioned this here:
http://appdb.winehq.org/objectManager.php?sClass=version&iId=29272
Direct link to bootstrapper downloader location here (to work around browser
OS/platform check):
https://dl.appstreaming.autodesk.com/production/installers/Fusion%20360%20C…
Prerequisite: 64-bit WINEPREFIX and Winver set to "Windows 7"
Download/installation is almost done when an error dialog is shown, stating:
"GetFinalPathNameByHandle not available on this platform"
Log file content, mentioned in error dialog:
--- snip ---
...
2013-11-03 20:29:50,805 - adsk.dls.streamer.process - ERROR :: Exception during
processing:
Traceback (most recent call last):
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\process.py",
line 935, in execute
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\process.py",
line 910, in _execute_base_impl
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\process.py",
line 771, in _config_app
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\process.py",
line 463, in _executetasks
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\utils.py", line
564, in activate_configurations
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\process.py",
line 1063, in activate_configurations
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\manifests.py",
line 383, in walk
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\manifests.py",
line 405, in _walk
File "W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\process.py",
line 1058, in _visit_file
File
"W:\SRC\Neutron\Installer\Streamer\src\adsk\dls\streamer\windows\platform.py",
line 685, in activate_configuration
File "F:\P4\Neutron\3P\PYTHON\3.3_slim_a\WIN64\lib\shutil.py", line 221, in
copy
File "F:\P4\Neutron\3P\PYTHON\3.3_slim_a\WIN64\lib\shutil.py", line 92, in
copyfile
File "F:\P4\Neutron\3P\PYTHON\3.3_slim_a\WIN64\lib\shutil.py", line 77, in
_samefile
File "C:\PROJECTS\Neutron3rd\PYTHON\3.3_slim_a\WIN64\lib\ntpath.py", line
661, in samefile
NotImplementedError: GetFinalPathNameByHandle not available on this platform
-------------------------------------------------------------------------------
2013-11-03 20:29:50,807 - adsk.dls.streamer.process - WARNING :: Error
detected, removing incomplete packages
2013-11-03 20:29:51,770 - adsk.dls.streamer.utils - WARNING :: Could not remove
non-existant file: c:\users\focht\local settings\application
data\autodesk\webdeploy\production\201fd6e278bda5ff82a09daf7e42854420d9b4bc\fusion
360.server.config
2013-11-03 20:29:55,568 - adsk.dls.streamer.registry - INFO :: Shutting down
database connection
--- snip ---
MSDN:
http://msdn.microsoft.com/en-us/library/windows/desktop/aa364962%28v=vs.85%…
$ sha1sum Fusion\ 360\ Client\ Downloader.exe
3621396240db11f87a1263c4593a7b760308a2d9 Fusion 360 Client Downloader.exe
$ du -sh Fusion\ 360\ Client\ Downloader.exe
5.4M Fusion 360 Client Downloader.exe
$ wine --version
wine-1.7.5-251-gbcf4ded
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=37261
Bug ID: 37261
Summary: Dasher crashes on start in mshtml:get_node()
Product: Wine
Version: 1.7.26
Hardware: x86
URL: http://www.chessclub.com/bits/interface/Dasher_154_ins
taller.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Blocks: 25193
Created attachment 49560
--> https://bugs.winehq.org/attachment.cgi?id=49560
terminal output/backtrace
Split from bug 25193.
Backtrace:
=>0 0x6a8fcac2 in xul (+0xcbcac2) (0x0033e4e8)
1 0x7c0bae5b get_node+0x2a(This=0x885d78, nsnode=0x2edc208, create=0x1,
ret=0x33e54c) [/home/austin/wine-git/dlls/mshtml/nsiface.h:11110] in mshtml
(0x0033e528)
2 0x7c091dd1 fire_event+0x20(doc=0x885d78, eid=EVENTID_LOAD, set_event=0x1,
target=0x2edc208, nsevent=0x2e257c8, script_this=0x886db8)
[/home/austin/wine-git/dlls/mshtml/htmlevent.c:1198] in mshtml (0x0033e558)
3 0x7c12db4e handle_load+0xdd(iface=<couldn't compute location>,
event=<couldn't compute location>)
[/home/austin/wine-git/dlls/mshtml/nsevents.c:273] in mshtml (0x0033e5c8)
[austin@localhost ~]$ sha1sum Dasher_154_installer.exe
777f5bbb8cb828ae6117a9bb1f6c50cdf49fdb9f Dasher_154_installer.exe
[austin@localhost ~]$ du -h Dasher_154_installer.exe
7.8M Dasher_154_installer.exe
[austin@localhost ~]$ wine --version
wine-1.7.26-28-ge98eee8
--
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=10716
Summary: Spurious hyperlink rendering in Blitzin 2.34
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Patch git-commit f945f16de201dbd834da10701025665bfa8f05ee "riched20:
WM_GETTEXTLENGTH should include CRLF conversions in returned count." causes a
regression whereby some text is wrongly rendered to look like hypertext links.
This will typically occur at the start or the end of a line, but not
exclusively.
--
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=10809
Summary: Directory selection broken in 16-bit File dialog
Product: Wine
Version: 0.9.50.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
The following patch renders the "Directories" pane of 16-bit File dialogs
inoperative.
Git commit 873799df246ea107a139ec898686490b20a1de7b
user32: Fix returned value of LB_DIR.
--
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=12098
Summary: Text positioning regression in Dragon Naturally Speaking
9
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: regression
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Sometime between wine-0.9.57 and yesterday, probably quite recently,
text positioning in the DNS 9 training window broke.
Text that should be centered horizontally now starts
in the wrong location (way left of the window).
I'll attach screenshots.
--
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=14462
Summary: Blitzin2: Cursor not visible
Product: Wine
Version: 1.1.1
Platform: Other
URL: http://www.chessclub.com/bits/interface/blitzin234.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Andrew.Talbot(a)talbotville.com
Git commit 762e5818d1c6cad877c3add809ef40c993478542 "richedit: Hide cursor when
text is selected" causes a regression in Blitzin 2 (v2.34) whereby the cursor
disappears and remains invisible.
The installer for this version needs to be run in a Win95-compatible
configuration. To verify this phenomenon, make a guest login and look for the
presence of a cursor in the console 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=34885
Bug #: 34885
Summary: Dasher.exe freezes Ubuntu 12.04. LTS with wine 1.7
Product: Wine
Version: 1.7.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jposchmann(a)gmail.com
Classification: Unclassified
HI
I am trying to run Dasher from ICC on my new ubuntu 12.04 . after first posting
people suggested to isntall newer version of wine. But now it is still not
running giving me this information :
kermann@ubuntu:~/.wine/drive_c/Program_files/Internet_Chess_Club/Dasher$ wine
Dasher.exe
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:thread:GetThreadPreferredUILanguages 52, 0x32f494, 0x32f504 0x32f49c
what happens is that it freezes and nothing happens after...
thanks for your help !
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=29863
Bug #: 29863
Summary: ICC Dasher crashes on start (without ie6 installed)
Product: Wine
Version: 1.4-rc2
Platform: x86
URL: http://www.chessclub.com/bits/interface/Dasher_154_ins
taller.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 38805
--> http://bugs.winehq.org/attachment.cgi?id=38805
terminal output
Dasher is the client application for connecting and playing on Internet Chess
Club.
The application can be installed without issues, but it crashes shortly after
starting.
Workaround: winetricks ie6
Steps to reproduce the problem with the demo:
1. Install the demo as usual.
2. Start the application with Dasher.exe.
3. In the launcher choose <Play against my computer> option. The application
main window is shown, and a blank/unresponsive window in it. This window
normally should show the opponent selection screen. Dasher.exe crashes in about
5 seconds (without the possibility to interact with application).
--
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=34840
Bug #: 34840
Summary: Problem of starting ICC dasher using wine Ubuntu ( it
crashes )
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jposchmann(a)gmail.com
Classification: Unclassified
Created attachment 46444
--> http://bugs.winehq.org/attachment.cgi?id=46444
this is the debugging file generated by wine
after installation of ICC Dasher 1.5.6 in my download folder
i try to start the Dasher.exe and it crashes.
I am a newbie and only recently switched to Ubuntu from windows7
please assist
--
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=38387
Bug ID: 38387
Summary: Multiple .NET 4.x WPF applications abort with
'Unrecoverable system error' in Win7 mode (dwrite font
family resolution must be case-insentive)
Product: Wine
Version: 1.7.40
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
follow-up of bug 38132 to track the issue properly.
https://www.winehq.org/pipermail/wine-devel/2015-April/107308.html
Patch is in queue:
https://source.winehq.org/patches/data/110726
Also needed for Visual Studio 2012/2013 installers in Win7 mode (with
'winetricks corefonts' being a required prerequisite)
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=38132
Bug ID: 38132
Summary: sb0t v.5 (.NET 4.0 app) crashes due to
dwritetextanalyzer_AnalyzeNumberSubstitution stub in
Win7 mode
Product: Wine
Version: 1.7.37
Hardware: x86-64
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Distribution: ---
Hello folks,
a user in #winehq reported this.
Prerequisite: 'winetricks -q dotnet40 corefonts'
Actually not really a problem, the user changed the Windows version to 'Windows
7' for whatever reason and also had other native overrides present.
Runs fine with default 'Windows XP'.
--- snip ---
...
fixme:dwrite:dwritetextanalyzer_AnalyzeNumberSubstitution (0x5b10a28 0 4
0x5b0fe88): stub
fixme:advapi:RegisterEventSourceW ((null),L".NET Runtime"): stub
fixme:advapi:ReportEventW
(0xcafe4242,0x0001,0x0000,0x00000402,(nil),0x0001,0x00000000,0x3399a8,(nil)):
stub
err:eventlog:ReportEventW L"Application: sb0t.exe\nFramework Version:
v4.0.30319\nDescription: The process was terminated due to an unhandled
exception.\nException Info: System.NotImplementedException\nStack:\n at
MS.Internal.TextFormatting.TextMetrics+FullTextLine.FormatLine(MS.Internal.TextFormatting.FullTextState,
Int32, I"...
fixme:advapi:DeregisterEventSource (0xcafe4242) stub
Unhandled Exception: System.NotImplementedException: The method or operation is
not implemented. ---> System.NotImplementedException: The method or operation
is not implemented.
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32
errorCode, IntPtr errorInfo)
at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32
errorCode, IntPtr errorInfo)
at
MS.Internal.Text.TextInterface.Native.Util.ConvertHresultToException(Int32 hr)
at MS.Internal.Text.TextInterface.TextAnalyzer.Itemize(UInt16* text, UInt32
length, CultureInfo culture, Factory factory, Boolean isRightToLeftParagraph,
CultureInfo numberCulture, Boolean ignoreUserOverride, UInt32
numberSubstitutionMethod, IClassification classificationUtility,
CreateTextAnalysisSink pfnCreateTextAnalysisSink, GetScriptAnalysisList
pfnGetScriptAnalysisList, GetNumberSubstitutionList
pfnGetNumberSubstitutionList, CreateTextAnalysisSource
pfnCreateTextAnalysisSource)
at MS.Internal.Shaping.TypefaceMap.GetShapeableText(CharacterBufferReference
characterBufferReference, Int32 stringLength, TextRunProperties
textRunProperties, CultureInfo digitCulture, Boolean isRightToLeftParagraph,
IList`1 shapeableList, IShapeableTextCollector collector, TextFormattingMode
textFormattingMode)
at MS.Internal.Shaping.GlyphingCache.GetShapeableText(Typeface typeface,
CharacterBufferReference characterBufferReference, Int32 stringLength,
TextRunProperties textRunProperties, CultureInfo digitCulture, Boolean
isRightToLeftParagraph, IList`1 shapeableList, IShapeableTextCollector
collector, TextFormattingMode textFormattingMode)
at
System.Windows.Media.TextFormatting.TextCharacters.MS.Internal.TextFormatting.ITextSymbols.GetTextShapeableSymbols(GlyphingCache
glyphingCache, CharacterBufferReference characterBufferReference, Int32 length,
Boolean rightToLeft, Boolean isRightToLeftParagraph, CultureInfo digitCulture,
TextModifierScope textModifierScope, TextFormattingMode textFormattingMode,
Boolean isSideways)
--- snip ---
$ sha1sum sb0t527.zip
7935fd3ca96486dbcbe3a1b59a134fcb9ae57ce7 sb0t527.zip
$ du -sh sb0t527.zip
1.5M sb0t527.zip
$ wine --version
wine-1.7.37
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=10135
Summary: Crash in Microsoft Dynamics GP trial setup in sxs
support?
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: other
Status: NEW
Keywords: Installer
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
This one's a bit tricky to set up.
Microsoft Dynamics GP trial's installer wants mdac 2.8.1;
fine, so let the app's installer do that, run twice to
work around bug 5824.
It then needs .net 1.1;
fine, so let the app's installer do that...
that runs into bug 10134. I worked around that by using
native dcom98 to finish the .net install.
OK, so then I run MS Dynamic GP's trial installer again,
expecting it to get past those two known problems and
into a new one. And sure enough, it crashed in activation
context code:
Unhandled exception: page fault on read access to 0xc07e3e11 in 32-bit code
(0x7ef844e1).
=>1 0x7ef844e1 check_actctx+0x11(h=<is not available>)
[/home/dank/wine-git/dlls/ntdll/actctx.c:573] in ntdll (0x0032fa28)
2 0x7ef8490b RtlAddRefActivationContext+0xb(handle=0xc07e3e11)
[/home/dank/wine-git/dlls/ntdll/actctx.c:2279] in ntdll (0x0032fa30)
3 0x7ee165ad AddRefActCtx+0x1d(hActCtx=0xc07e3e11)
[/home/dank/wine-git/dlls/kernel32/actctx.c:188] in kernel32 (0x0032fa40)
4 0x790598c5 in fusion (+0x198c5) (0x0032fa88)
5 0x792487fb in mscorwks (+0x987fb) (0x0032fac4)
6 0x79230635 in mscorwks (+0x80635) (0x0032fb54)
7 0x7924594b in mscorwks (+0x9594b) (0x0032fb60)
8 0x792c61e8 in mscorwks (+0x1161e8) (0x0032fb6c)
9 0x005525f3 in setup (+0x25f3) (0x0032fba8)
10 0x01003e97 in setup (+0x3e97) (0x0032fde0)
11 0x0100475e in setup (+0x475e) (0x0032ff08)
12 0x7ee580be start_process+0xee(arg=0x0)
[/home/dank/wine-git/dlls/kernel32/process.c:839] in kernel32 (0x0032ffe8)
13 0xb7e6d9c7 wine_switch_to_stack+0x17() in libwine.so.1 (0x00000000)
0x7ef844e1 check_actctx+0x11 [/home/dank/wine-git/dlls/ntdll/actctx.c:573] in
ntdll: cmpl $0xc07e3e11,0x0(%edx)
573 switch (actctx->magic)
--
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=40870
Bug ID: 40870
Summary: Unable to run Microsoft Threat Modeling Tool on Ubuntu
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: mscoree
Assignee: wine-bugs(a)winehq.org
Reporter: cs.gaurab(a)gmail.com
Distribution: ---
Created attachment 54932
--> https://bugs.winehq.org/attachment.cgi?id=54932
Wine error trace file
Unable to run Microsoft Threat Modeling Tool in Unbuntu.
Trace attached.
Tool url: https://www.microsoft.com/en-us/download/details.aspx?id=49168
--
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=37758
Bug ID: 37758
Summary: Engine001 Crash (when selecting an NPC) ~ MAP001.EXE
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thezixgamer(a)gmail.com
Distribution: ---
Created attachment 50277
--> https://bugs.winehq.org/attachment.cgi?id=50277
bug report produced by WINE
A crash is caused when editing a Map, everytime i try to place an NPC on the
map, shortley after selecting what type of NPC I want the screen hangs and the
app crashes soon after.
Having used this application for years on WIndows I confirm this is not a bug
within Engine001 (Map001.exe) itself, but within WINE.
--
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=35423
Bug ID: 35423
Summary: Serif WebPlus x5 and x6 error:Invalid command line
when setup is run [Wine 1.7]
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mclarenclarkson(a)gmail.com
Classification: Unclassified
Hello,
Recentley when I have tried to run Serif WebPlus x5 and x6 I get an error:
Invalid command line when I right click on the setup.exe and select open in
wine.
I have only experienced this problem with Serif WebPlus and I am running wine
1.7 and I have deleted my .wine and it re-created, I also tried this on wine1.4
with no success.
Thanks,
MC
--
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=39949
Bug ID: 39949
Summary: Could not install a Windows product WebPlus X8 from
SERIF
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: want.g(a)xtra.co.nz
Distribution: ---
Created attachment 53374
--> https://bugs.winehq.org/attachment.cgi?id=53374
This is the backtrace file that was produced.
I was trying to install WebPlus X8 from SERIF. www.serif.com. It had just
about finished extracting its files then the attached error occurred.
I am running Ubuntu 15.10 LTS with WINE installed and all the latest patches
applied.
--
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=31848
Bug #: 31848
Summary: Printing from command line not implemented in Wordpad
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: NEW
Keywords: download, printing, source
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kennybobs(a)o2.co.uk
Classification: Unclassified
The SlingPlayer 1.5 installer gives you the option of printing the licence
agreement.
Clicking on print creates a dialog:
"Wordpad: Printing not implemented."
http://source.winehq.org/source/programs/wordpad/wordpad.c#L1202
--
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=24816
Summary: Webplus x2 install failure
Product: Wine
Version: 1.3.5
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: James.horney.j(a)gmail.com
when i try to install webplus x2 the installer fails and tells me to use the
setup.exe which i have and i don't know what to do as my business depends on
this software!
--
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.