https://bugs.winehq.org/show_bug.cgi?id=35571
Bug ID: 35571
Summary: Questrade IQ Divide by Zero error
Product: Wine
Version: 1.7.12
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: whirlwynds(a)gmail.com
Classification: Unclassified
Created attachment 47504
--> https://bugs.winehq.org/attachment.cgi?id=47504
Divide by Zero error using 1.7.12
Receive the following error when running Questrade IQ with Wine 1.7.12
(http://help.questrade.com/how-to/iq-edge/getting-started/downloading-and-in…)
Unhandled exception: divide by zero in 32-bit code (0x653aaa4e).
--
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=32480
Bug #: 32480
Summary: Shogun: Total War Demo crashes at startup
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dedidetail(a)gmail.com
Classification: Unclassified
Created attachment 42842
--> http://bugs.winehq.org/attachment.cgi?id=42842
Shogun crashlog
The Shogun: Total War Demo crashes before rendering the main menu. Looking at
the backtrace, and with a little help from ollydbg, it seems to fail when
loading the ddraw function DD_Surface_BltFast.
The demo is named shogdem.zip and can be downloaded very fast from fileplanet.
I am using a minimal install of Ubuntu Raring
Wine 1.5.19 compiled from Quantal Wine PPA source(before Raring was added)
Intel(R) Celeron(R) CPU E3300 @ 2.50GHz
Nvidia GeForce GTX 550 Ti w/ 310.14‎ proprietary driver
I have also tested on Ubuntu Quantal, with both Wine 1.4 stable and 1.5.19 from
PPA, on another computer with an AMD processor and older Nvidia card also with
the 310.14‎ proprietary driver.
--
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=37001
Bug ID: 37001
Summary: APB Reloaded 1.x (MMORPG) launcher crashes on startup
(some CIM data type to OLE variant (VT) mappings are
incorrect)
Product: Wine
Version: 1.7.23
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wmi&wbemprox
Assignee: wine-bugs(a)winehq.org
Reporter: focht(a)gmx.net
Hello folks,
as the summary says.
The bootstrapper installer downloads the client which is ~6GB
After installing the client, .NET Framework 2.0, PunkBuster, the launcher fails
on startup (before updating itself).
Managed backtrace:
--- snip ---
$ pwd
/home/focht/.wine/drive_c/Program Files/GamersFirst/APB Reloaded/Launcher
$ wine ./APBLauncher.exe
...
Unhandled Exception: System.TypeInitializationException: The type initializer
for 'Hosting.cLog' threw an exception. ---> System.InvalidCastException:
Specified cast is not valid.
at System.Management.PropertyData.MapWmiValueToValue(Object wmiValue,
CimType type, Boolean isArray)
at System.Management.PropertyData.get_Value()
at Hosting.cOSInfoWMI.IWin32.Print(PrintDelegate Print)
at Hosting.cLog.StartDiagnoseMessages()
at Hosting.cLog.WriteDiagnoseMessages()
at Hosting.cLog..cctor()
--- End of inner exception stack trace ---
at Hosting.cLog.Warning(String sMessage)
at Hosting.Program.CurrentDomain_UnhandledException(Object sender,
UnhandledExceptionEventArgs e)
--- snip ---
Managed code from launcher:
--- snip ---
// Hosting.cLog
private static void StartDiagnoseMessages()
{
cLog.Write("[APB Launcher] " + DateTime.get_Now().ToLongDateString() + ", "
+ DateTime.get_Now().ToLongTimeString());
cLog.StartDiagnoseMessageUserName();
cLog.StartDiagnoseMessageUAC();
ArrayList arrayList = new ArrayList();
arrayList.Add(new cOSInfoWMI.Win32_OperatingSystem());
arrayList.Add(new cOSInfoWMI.Win32_Processor());
arrayList.Add(new cOSInfoWMI.Win32_ComputerSystem());
arrayList.Add(new cOSInfoWMI.Win32_NetworkAdapterConfiguration());
arrayList.Add(new cOSInfoWMI.Win32_LogicalDisk());
arrayList.Add(new cOSInfoWMI.Win32_VideoController());
arrayList.Add(new cOSInfoWMI.Win32_SoundDevice());
IEnumerator enumerator = arrayList.GetEnumerator();
try
{
while (enumerator.MoveNext())
{
cOSInfoWMI.IWin32 win =
(cOSInfoWMI.IWin32)enumerator.get_Current();
win.Print(new cOSInfoWMI.IWin32.PrintDelegate(cLog.Write));
}
}
finally
{
IDisposable disposable = enumerator as IDisposable;
if (disposable != null)
{
disposable.Dispose();
}
}
cLog.Flush();
}
...
using Hosting;
using System;
public class Win32_ComputerSystem : cOSInfoWMI.IWin32
{
internal new enum Property : ushort
{
DNSHostName,
Domain,
DomainRole,
Manufacturer,
Model,
Name,
NameFormat,
Status,
SystemType,
TotalPhysicalMemory,
UserName
}
internal new enum SpecialByte : ushort
{
TotalPhysicalMemory
}
internal new enum SpecialKiloByte : ushort
{
}
private enum DomainRole
{
Standalone_Workstation,
Member_Workstation,
Standalone_Server,
Member_Server,
Backup_Domain_Controller,
Primary_Domain_Controller
}
}
...
// Hosting.cOSInfoWMI.IWin32
public virtual void Print(cOSInfoWMI.IWin32.PrintDelegate Print)
{
Print("\n");
Print(base.GetType().get_Name());
string text = this.GetDynamicTypeName() + "+" +
typeof(cOSInfoWMI.IWin32.Property).get_Name();
Type type = Type.GetType(text);
string[] names = Enum.GetNames(type);
ArrayList wMI = this.GetWMI();
for (int i = 0; i < wMI.get_Count(); i++)
{
PropertyData propertyData = (PropertyData)wMI.get_Item(i);
if (i != 0 && names[0] == propertyData.get_Name())
{
Print("\n");
}
if (propertyData != null)
{
Print(string.Format(" {0}\t\t\t{1,-25}", propertyData.get_Name(),
this.InterpreterValueToMeaning(propertyData.get_Name(),
propertyData.get_Value())));
}
}
}
--- snip ---
Some CIM data type to OLE variant (VT) mappings are incorrect.
These need to be fixed with explicit variant override to have the launcher
successfully run:
'Win32_ComputerSystem':
DomainRole -> CIM_UINT16, VT_I4
'Win32_NetworkAdapterConfiguration':
Index -> CIM_UINT32|COL_FLAG_KEY, VT_I4
IPConnectionMetric -> CIM_UINT32, VT_I4
'Win32_VideoController_:
CurrentBitsPerPixel -> CIM_UINT32, VT_I4
CurrentHorizontalResolution -> CIM_UINT32, VT_I4
CurrentVerticalResolution -> CIM_UINT32, VT_I4
There are probably more incorrect type mapping present but the above properties
are strictly required to be fixed.
$ sha1sum GamersFirst_LIVE\!_Setup_EN.exe
904bd380bba06cc32288646fddd5e4b9287ca71b GamersFirst_LIVE!_Setup_EN.exe
$ du -sh GamersFirst_LIVE\!_Setup_EN.exe
13M GamersFirst_LIVE!_Setup_EN.exe
$ wine --version
wine-1.7.23-15-gbe2128f
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=33805
Bug #: 33805
Summary: LEGO Digital Designer crashes on start
Product: Wine
Version: 1.5.29
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leftmostcat(a)gmail.com
Classification: Unclassified
Created attachment 44808
--> http://bugs.winehq.org/attachment.cgi?id=44808
LEGO Digital Designer crash log
After installing LEGO Digital Designer (available from
http://ldd.lego.com/en-us/download/), it runs correctly from the installer.
Thereafter, it crashes immediately at start. I have attached the resulting
terminal output.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=27969
Summary: wine explorer crashes on startup
Product: Wine
Version: 1.3.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: doctordruidphd(a)yahoo.com
Created an attachment (id=35794)
--> (http://bugs.winehq.org/attachment.cgi?id=35794)
Trqace from running wine from a terminal
explorer.exe crashes on startup.
Other programs seem to work.
I have tried this with a "clean" .wine, problem still exists.
System: kubuntu natty-11.04 64-bit.
I have to kill explorer with pkill.
--
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=17441
Summary: Anarchy Online: First run has messed up graphics and
pointer
Product: Wine
Version: 1.1.15
Platform: PC
URL: http://cdn.funcom.com/ao/client/AnarchyOnline_17.9.1-
Small.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: letsclimbhigher(a)gmail.com
When I run anarchy online for the first time (since a system bootup) the game
screen has these blocky squares of blinking colors all over that fade as the
game finishes loading. But the pointer remains messed up and sometimes places
in the game world have their texture surface a mesh of random pixel colors.
Quiting the game and reloading always fixes these issues, as it only happens
the first time the game is run. About 10% of the time the game will not finish
loading and the user has to hit the ESC key which causes the game to exit and
go out to the login screen again. When run again it will be fine as mentioned
above.
This bug is in 1.1.11 thru 1.1.15 that I personally know of and have tested.
--
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=31846
Bug #: 31846
Summary: World of Warcraft: graphical glitches with particle
weather effects using D3D9 engine
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas(a)ch.tudelft.nl
Classification: Unclassified
Created attachment 41900
--> http://bugs.winehq.org/attachment.cgi?id=41900
Screenshot of blowing snow clouds using D3D9 engine
Due to a bug in Blizzard's OpenGL engine I switched to the D3D9 engine.
All works well except for the weather in, among others, Tanaris. During a
sandstorm (sand clouds blowing towards the player) yellow, red and green pixels
temporarily form on the screen, like sand blowing against the screen. The same
is observed in the Valley of Emperors in Kun-Lai Summit, where there's snow
clouds blowing towards the player - see also the attachments. The comparison
with the OpenGL screenshot suggests that the pixels should actually be
snowflakes.
This effect is affected by the particle density setting: decreasing the setting
decreases the amount of pixels (and normally: the amount of snowflakes) and
vice versa.
This bug has been observed using wine versions 1.5.13 and 1.5.14. No others
versions were tested (using OpenGL before). Wine is set to windows XP mode
using default library settings. msvcr80.dll is present in the directory of WoW.
--
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=30945
Bug #: 30945
Summary: Jammer 6 demo fails to install without native ie7
Product: Wine
Version: 1.5.6
Platform: x86
URL: http://www.soundtrek.com/content/modules.php?name=Cont
ent&pa=showpage&pid=10
OS/Version: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: mshtml
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Classification: Unclassified
Created attachment 40596
--> http://bugs.winehq.org/attachment.cgi?id=40596
terminal output
Backtrace:
=>0 0x7da006f6 handle_load+0xd6(iface=0x32a61f8, event=0x3209c88)
[/home/austin/wine-git/dlls/mshtml/nsevents.c:269] in mshtml (0x0033e624)
1 0x6a5d052b in xul (+0x99052a) (0x03236540)
2 0x00000001 (0x6af81c58)
3 0x6a5d1e8c in xul (+0x991e8b) (0x6a5d1ea8)
0x7da006f6 handle_load+0xd6 [/home/austin/wine-git/dlls/mshtml/nsevents.c:269]
in mshtml: movl 0x0(%eax),%edx
269 nsIDOMHTMLDocument_GetBody(doc->nsdoc, &nsbody);
I'll attach the full output. Doing winetricks ie7 works around it.
The installer requires native mfc42.
--
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=24711
Summary: VcsCore.exe has encountered a problem and needs to
close
Product: Wine
Version: 1.1.42
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: damon_mac(a)yahoo.co.uk
AV VCS 7.0 Gold does not work in this version of wine.
This bug report is being filed by an Ubuntu user, but the owner of the laptop
is less knowledgeable, therefore if you need any further debugging information
or logs, please request them but it may take up to 2 weeks for a response.
Thank you guys.
--
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=36833
Bug ID: 36833
Summary: app aborted because call unimplemented function
iphlpapi.dll._PfBindInterfaceToIPAddress@12
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: iphlpapi
Assignee: wine-bugs(a)winehq.org
Reporter: penghao(a)linuxdeepin.com
Created attachment 48907
--> https://bugs.winehq.org/attachment.cgi?id=48907
console output
wine-1.7.21-31-g95ae71f
Linux phcole 3.13.0-30-generic #54-Ubuntu SMP Mon Jun 9 22:47:59 UTC 2014 i686
i686 i686 GNU/Linux
When I try to install CMBChina's IE sec plugins, app aborted bscause called a
unimplemented function PfBindInterfaceToIPAddress@12 in iphlpapi.dll.
--
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.