http://bugs.winehq.org/show_bug.cgi?id=23849
Summary: Hofmann photo album app has access violation dialog
during startup
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
A comment on
http://www.linuxhispano.net/2010/07/30/ejecutar-un-programa-windows-en-ubun…
says
"Well I've been wanting to use Wine for a particular program, is software that
provides Hoffman to create photo albums. It is this:
http://www.hofmann.es/include/DescargaFichero.asp
There is, however, required. NET and I can not make it run."
winetricks mono26 doesn't make it anywhere near happy, but winetricks dotnet20
lets it start. The app puts up an exception dialog, and the log shows
fixme:gdiplus:GdipPrivateAddMemoryFont 0x1109e658, 0x110a0698, 352225
2010-07-30 16:42:14,440 [1] ERROR DigitalAlbum - StartPageControl -> Set Font
System.AccessViolationException: Attempted to read or write protected memory.
This is often an indication that other memory is corrupt.
at HofmannDigital.HelperFont.AddFontMemResourceEx(IntPtr pbFont, Int32
cbFont, Int32 pdv, Int32 pcFonts)
at HofmannDigital.HelperFont.GetEmbeddedFonts()
at HofmannDigital.HelperFont.LoadEmbeddedFonts()
at HofmannDigital.HelperFont.GetPrivateFontFamily(String familyName)
at HofmannDigital.HelperFont.CreatePrivateFont(String familyName, Single
emSize, FontStyle style)
at HofmannDigital.StartPageControl..ctor()
fixme:gdiplus:GdipGetRegionScansCount not implemented
You can ignore that and continue.
(If you try to get past it with winetricks gdiplus corefonts, bad things
happen.)
--
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=22277
Summary: Pool Sharks requires implemented
GdipSetImageAttributesWrapMode
Product: Wine
Version: 1.1.42
Platform: x86
URL: http://www.poolsharks.com/PoolSharksInstaller.exe
OS/Version: Linux
Status: NEW
Keywords: dotnet, download
Severity: normal
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=27214)
--> (http://bugs.winehq.org/attachment.cgi?id=27214)
Pool Sharks .NET unhandled exception output
After installing dotnet20 from winetricks and installing Pool Sharks, starting
its launcher yields a managed exception:
System.NotImplementedException: Not implemented.
at System.Drawing.Imaging.ImageAttributes.SetWrapMode(WrapMode mode, Color
color, Boolean clamp)
at System.Drawing.Imaging.ImageAttributes.SetWrapMode(WrapMode mode)
at System.Windows.Forms.ControlPaint.DrawBackgroundImage(Graphics g, Image
backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle
bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
...
Using native gdiplus successfully works around this exception.
--
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=17435
Summary: AntiDupl: crashes when duplicated images founded
Product: Wine
Version: 1.1.15
Platform: PC-x86-64
URL: http://antidupl.narod.ru/files/AntiDupl.NET-1.0.0.0.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bopin(a)mail.com
Created an attachment (id=19516)
--> (http://bugs.winehq.org/attachment.cgi?id=19516)
Two console logs(with or without gdiplus.dll) with comments
if program tries to make a list of duplicated or broken images, crash happens.
If gdiplus.dll not used, no window appears.
--
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=19529
Summary: .NET 2.0: LDAP authorization fails (bug report +
solution)
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.romanek(a)no.pl
Created an attachment (id=22726)
--> (http://bugs.winehq.org/attachment.cgi?id=22726)
Patched search.c file from wine/dlls/wldap32
In the company where I work we use our own internal software written in .NET
2.0. This software authenticates users using LDAP. When I was trying to run
this software under Ubuntu 9.04 using WINE 1.26 authentication always failed. I
started debugging the problem and I found that a .NET API call to
"System.DirectoryServices.Protocols.LdapConnection.SendRequest(DirectoryRequest
request)" throws an exception. A debug was also printed on the console log says
that "A bad parameter was passed to a routine". According to this website -
http://msdn.microsoft.com/en-us/library/aa367014%28VS.85%29.aspx - it is the
error message representation of the LDAP_PARAM_ERROR return code from WinLDAP
library.
I was digging further and I found that in WINE "SendRequest(DirectoryRequest
request)" method calls "ldap_search_extW()" WINE API function
(http://source.winehq.org/source/dlls/wldap32/search.c#L238). This function
calls ldap_search_ext from OpenLDAP API. A quick look in the source code
(http://www.openldap.org/devel/cvsweb.cgi/~checkout~/libraries/libldap/searc…)
and I got it - see ldap_pvt_search():
if( timeout != NULL ) {
if( timeout->tv_sec == 0 && timeout->tv_usec == 0 ) {
return LDAP_PARAM_ERROR;
}
I went back to 'ldap_search_extW()'. Here it is: the 'tv_sec' member of 'struct
timeval tv' is always filled with the value of timelimit argument, even if this
value is 0. Then the address of the structure is ALWAYS passed to
'ldap_search_ext()'. As a consequence (see above) LDAP_PARAM_ERROR is returned.
If we make a change in call to 'ldap_search_ext()' and pass NULL as timeout
argument when 'timelimit' is 0 instead of passing 'tv' structure address
everything works perfectly. I think this is how this 'timelimit' argument is
handled in WinLDAP library.
And what's the most important, this solves the problem of authentication in my
company's 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.
http://bugs.winehq.org/show_bug.cgi?id=20001
Summary: Unimplemented function
ntdll.dll.NtQuerySystemEnvironmentValue
Product: Wine
Version: 20050930
Platform: PC
URL: http://appdb.winehq.org/objectManager.php?sClass=versi
on&iId=17426
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cdx(a)nerim.net
Created an attachment (id=23540)
--> (http://bugs.winehq.org/attachment.cgi?id=23540)
log file
I have an issue with Game toolset for Neverwinter Nights II.
Im trying to launch the toolset NWN2ToolsetLauncher.exe with wine.
I have all libs installed, as described in the install procedure at
http://appdb.winehq.org/objectManager.php?sClass=version&iId=17426
I had previously succeeded to launch the toolset with some minor issues. So it
seems to be a regression.
I didn't tried it for a while and since had some updates from wine development
packages.
.NET 2.0 is installed
If I try to launch from command line, I get this exception :
wine: Unimplemented function ntdll.dll.NtQuerySystemEnvironmentValue
--
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=23808
Summary: Marmot Project - another bug
Product: WineHQ Apps Database
Version: unspecified
Platform: x86
URL: http://marmot.gruk.org
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: appdb-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: golkran(a)gmail.com
After some searchs about Marmot project I tried to install it think it was ok.
Using winetricks i installed :
- donetfx.exe (microsoft frameworks 2.0)
- MFC42.dll
- Windows script shell 5.6
--> http://bugs.winehq.org/show_bug.cgi?id=5931
And unfortunately i have these logs :
fixme:actctx:parse_manifest_buffer root element is L"asmv1:assembly", not
<assembly>
fixme:sync:CreateMemoryResourceNotification (0) stub
fixme:advapi:LsaOpenPolicy ((null),0x32f154,0x00000800,0x32f0fc) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:advapi:LsaOpenPolicy ((null),0x32f0b0,0x00000800,0x32f058) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:gdiplus:GdipGetFamilyName No support for handling of multiple languages!
fixme:gdiplus:GdipCreateHalftonePalette stub
i have no idea to fix it.
Regards,
Golkran
--
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=16643
Summary: GetSocial fails to start
Product: Wine
Version: 1.1.11
Platform: PC
URL: http://hillelstoler.com/2008/05/18/getsocial-social-
bookmarking-for-wordpresscom/
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: interweiss(a)yahoo.ca
Created an attachment (id=18230)
--> (http://bugs.winehq.org/attachment.cgi?id=18230)
Error log from Terminal
GetSocial is an application that creates linkable icons that are used for
social bookmarking sites that can be placed in Wordpress blogs. I first ran
this application, but I received an error stating that I had to install Mono.
After I installed Mono I received a slew of errors that I have attached in a
file.
http://hillelstoler.com/2008/05/18/getsocial-social-bookmarking-for-wordpre…
--
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=18757
Summary: Albumsoftware_Foto_de_Klijne.exe does not work, it
crashes during installation
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jelledejong(a)powercraft.nl
Hello everybody,
In the Netherlands its very popular by average non expert computer users to use
special software to make photo albums and upload them to a shop that prints
them out. This popular software is build for Microsoft Windows, and is a real
bottleneck for converting people to a Linux distribution.
I tried to get the software to run with Wine, but it does not work with a
standard Wine installation under Debian GNU/Linux unstable branch.
The download location of the executable in question can be found here:
http://www.fotodeklijne.nl/index.php?option=com_phocadownload&view=category…
I would really appreciate it if somebody can get this working out of the box
with a standard wine installation.
Please see the attachments for the complete log.
Thanks in advance,
Jelle de Jong
--
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=18643
Summary: NCSoft Launcher crashes after being run.
Product: Wine
Version: 1.1.22
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: killzenator(a)gmail.com
Created an attachment (id=21348)
--> (http://bugs.winehq.org/attachment.cgi?id=21348)
Terminal output
Installing the Launcher works, then it checks for updates, it then downloads a
patch to self-update itself. Then it crashes after attempting to update.
This is labeled as major because it is used to install and manage multiple
games produced my NCSoft.
Quote from their website
"All of our newer releases have the NCsoft Launcher included and it will be
installed with the game. Once the NCsoft Launcher is installed, you can use it
to launch any NCsoft game."
--
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=6085
David Heidelberger (okias) <david.heidelberger(a)ixit.cz> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|david.heidelberger(a)ixit.cz |
--
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=4654
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |4aee4c7d1c1be70103ce7f5a46e
| |16ecce0041b83
--
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=4078
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |1ca7b881d744fe5003b1a00ef8a
| |1e0d601e03caf
Component|user32 |ntdll
Hardware|Other |x86
--
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=21823
Summary: Dragon Unpacker: crash on startup
Product: Wine
Version: 1.1.39
Platform: x86-64
URL: http://www.elberethzone.net/lang-en/dup-download.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: selmi(a)centrum.sk
Created an attachment (id=26415)
--> (http://bugs.winehq.org/attachment.cgi?id=26415)
log with +relay
Dragon unpacker version 5.5.1 beta installs successfuly, but then crashes on
startup. splash screen is shown, then wine dumps error to console (wine:
Unhandled exception 0x0eedfade at address 0x0000:0x7b8366e2 (thread 0009),
starting debugger...) and shows graphical error window. then, when Close is
pressed it shows another small error box with message about unhandled exception
in ntdll.dll
log with +relay is attached
everything was tested with fresh .wine, only things I changed were setting of
virtual desktop to 1024x768, audio to alsa a removed links which point to
desktop etc.
I just added application to AppDB, when it will be commited I will add links
here
--
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=6085
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |152c2492547f4827e91a0fd8f23
| |cb4127ce08d83
Component|setupapi |-unknown
Hardware|Other |x86
Version|unspecified |0.9.20.
OS|other |Linux
--
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=18426
Summary: VMware Player install - not enough disk space
Product: Wine
Version: 1.1.21
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Masternoob(a)gmx.at
i tried to install VmWare Player 2.5.2 but at the beginning the installer
claims that there is not enough disk space...but there is clearly enough on my
computer
im running ubuntu 9.04
vmware player can be downloaded here for free:
http://www.vmware.com/download/player/download.html
--
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=21624
Summary: MJ12node.exe crashes with StackOverflowException
Product: Wine
Version: 1.1.38
Platform: x86
URL: http://www.majestic12.co.uk/projects/dsearch/download.
php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: refic(a)psimerion.org
Created an attachment (id=26100)
--> (http://bugs.winehq.org/attachment.cgi?id=26100)
console output
When I try to run MJ12node.exe (Majestic-12 distributed search engine client)
it starts but crashes immediately with "Process is terminated due to
StackOverflowException". It's a .NET 2.0 application so I installed dotnet20
via winetricks. The app can be downloaded from the URL provided but I can
surely do more testing myself if needed.
--
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=10039
Summary: F.E.A.R. Perseus Mandate demo fails to launch
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
Created an attachment (id=8582)
--> (http://bugs.winehq.org/attachment.cgi?id=8582)
output in console
When i try to launch the Demo of F.E.A.R. Perseus Mandate a dialog box pops up
stating a security module cannot be activated. This program cannot be
executed(7000).
--
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=14005
Summary: Debugger Detected [304]
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arcnorj(a)yahoo.es
The message "Debugger Detected [304]" is shown when trying to run some software
(NJStar and "Filter Forge" tried). Windows version doesn't make any difference.
--
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=17150
Summary: Achieve Planner 1.9.0 (XP version) aborts with "failed
to load resources from resource file"
Product: Wine
Version: 1.1.13
Platform: PC
URL: http://www.effexis.com/achieve/downloadn.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arethusa26(a)gmail.com
Created an attachment (id=19015)
--> (http://bugs.winehq.org/attachment.cgi?id=19015)
Achieve Planner 1.9.0 trace
With today's Git (wine-1.1.13-358-g5775edd), after installing the .NET
Framework 1.1, a prerequisite of the application, native gdiplus, instaling
Achieve Planner, and then adding a native override for mscoree.dll since the
builtin was being loaded, starting the application results in a message box
stating that:
"Achieve Planner failed to load resources from resource file
Please check your Setup"
The Vista version of Achieve Planner, which depends on .NET Framework 2.0, does
not have this problem and starts up successfully.
--
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=13411
Summary: setup_exception_record stack overflow in Teach2000
Product: Wine
Version: 1.0-rc2
Platform: PC
URL: http://teach2000.memtrain.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: teach2000(a)basement.nl
If I close the Space Invaders Game of Teach2000 in a certain way, Wine crashes.
Steps:
Install and run Teach2000 from http://teach2000.memtrain.com
Open a list (ex. C:\Program Files\Teach2000\Examples\Klingon - every day
phrases.t2k)
Go to the 'Test' tab and select type 'Space invaders - the game'.
The game starts, after you press 'Play'.
Close the window by clicking on the red cross in the caption bar.
Exp:
The window is closed.
Act:
Wine hangs after hundreds of access violations.
If I close the window with 'Stop', 'Exit', only one access violation comes by.
Tested on OpenSuse 10.2, Teach2000 version 8.25.
--
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=7949
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |72ddcb5f362748c040dc902bb5c
| |1c75760c675b1
Hardware|Other |x86
OS|other |Linux
--
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=12405
Summary: Crash at starting WISO2008
Product: Wine
Version: 0.9.58.
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amilcar.lucas(a)gmail.com
Created an attachment (id=11919)
--> (http://bugs.winehq.org/attachment.cgi?id=11919)
Messages and backtrce of a crash
I installed WISO2008 fine, without errors.
But when I try to run it, I get the attached backtrace.
--
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=11030
Summary: JIT debugger not found
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danny.piccirillo(a)gmail.com
I installed Neuro-Programmer 2 -
http://thepiratebay.org/tor/3960649/Neuro-Programmer_2
and then when i launched it, i got the following "No debugger found." error
message:
Registered JIT debugger it not available. An attempt to launch a JIT debugger
with the following command resulted in an error code of 0x2 (2). Please check
computer settings.
cordbg.exe !a 0x15
Click on Retry to have the process wait while attaching a debugger manually.
Click on Cancel to abort the JIT debugger request.
--
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=12873
Summary: Microsoft 3D Movie Maker demo installer fails
Product: Wine
Version: 0.9.60
Platform: Other
URL: ftp://ftp.microsoft.com/deskapps/kids/3dmm.exe
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffzaroyko(a)gmail.com
The installer says it completes, but wine outputs the following message:
err:rundll32:main Unable to load L"setupx.dll"
At which point the install does not finish and it deletes the temporary files
it had extracted to windows\temp
--
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=15877
Summary: unimplemented function sxs.dll.CreateAssemblyNameObject,
aborting
Product: Wine
Version: 1.1.7
Platform: PC-x86-64
URL: http://www.harzing.com/resources.htm#/pop.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: neteler(a)gmail.com
Created an attachment (id=17027)
--> (http://bugs.winehq.org/attachment.cgi?id=17027)
unimplemented function sxs.dll.CreateAssemblyNameObject, aborting
Installing the latest 'Publish or Perish' scientific citation software, leads
to this error:
wine: Call from 0x7edf6770 to unimplemented function
sxs.dll.CreateAssemblyNameObject, aborting
Older'Publish or Perish' software versions worked. I am using Mandriva 2008.0
with Wine 1.7.7 on a 64bit laptop.
--
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=5054
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |644220b518dfb574c1f5dee2206
| |5d88b9603e7c7
Component|-unknown |ole32
--
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=13967
Summary: Pando crashes in install
Product: Wine
Version: 1.0-rc5
Platform: Other
URL: http://www.pando.com
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 9364
Created an attachment (id=14135)
--> (http://bugs.winehq.org/attachment.cgi?id=14135)
Terminal output - wine 1.0-rc5
Testing for bug 9364, Pando crashes during install. Not sure if it's a
regression in wine or in Pando's installer. I unchecked all optional components
in install (if you don't, it still crashes, but not in crypt32). Terminal
output attached, +relay,+seh,+tid to follow.
--
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=8072
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |bab2ddb77ed55dd711101deff1f
| |20dbb5cee792d
CC| |focht(a)gmx.net
Component|-unknown |shell32
--
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=7585
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |AndreyMust19(a)mail.ru
--- Comment #64 from Austin English <austinenglish(a)gmail.com> ---
*** Bug 24057 has been marked as a duplicate of this bug. ***
--
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=5858
Maik Wagner <maiktapwagner(a)aol.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |maiktapwagner(a)aol.com
--- Comment #15 from Maik Wagner <maiktapwagner(a)aol.com> ---
The links in the AppDB to the product have become invalid. Latest version is
apparently 8.6 which can be downloaded from here:
http://www.softprogres.sk/index.php?menu=produkty&produkty=winamb
--
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=3548
Maik Wagner <maiktapwagner(a)aol.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |maiktapwagner(a)aol.com
--- Comment #49 from Maik Wagner <maiktapwagner(a)aol.com> ---
Still present in Wine 1.7.20 (CentOS 6.5 32-bit - Command and Conquer 3 -
Tiberium Wars demo)
--
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=14192
Summary: ElsterFormular 2007/2008: Data submission fails with
"Errorcode 49152"
Product: Wine
Version: 1.0.0
Platform: PC
URL: http://www.elster.de/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Sebastian.Leske(a)sleske.name
Elster is the official German program required to submit various tax
statements.
It installs and starts with Elster, and data input mostly works (help does not
work, see bug 11303).
However, when running a "Plausibilitätsprüfung" (plausibility check) or
actually submitting the data (real submission or submission test,
"Datenübermittlung"/"Tets der Datenübermittlung"), Elster fails with a weird
error message:
Programmversion: 9.3.0.0
Fehlermeldung einer ELSTER-Telemodul-Funktion:
Errorcode: 49152
5VT
Sorry, kein Fehlertext für diesen Fehlercode vorhanden.
The "5VT" is different each time the error occurs; the rest of the text is
always the same.
This has already been discussed on the Elster mailing lists, without result:
https://www.elster.de/cgi-bin/ubba/ultimatebb.cgi?ubb=get_topic;f=1;t=002617
--
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=12486
Summary: Microsoft Office Standard 2007 installation failure
Product: Wine
Version: 0.9.58.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tiago.freire(a)gmail.com
Created an attachment (id=12047)
--> (http://bugs.winehq.org/attachment.cgi?id=12047)
console error messages
The installation does not crash, but does not continue with an error message
about missing or corrupted files. The message is in (Brazilian) Portuguese, bt
says something like:
-----
Installation Error(Window Title)
Installation cannot continue because a required file is corrupted or
unavailable. Execute the installation again from the source disk or download
place(?or site?).
-----
Tested on Ubuntu Hardy Heron Beta with wine 0.9.59. strangely, bugzilla only
lists up to 0.9.58.
--
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=5504
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Fixed by SHA1| |0d4707c284808df6d87eeb5908d
| |f29693889eccc
CC| |focht(a)gmx.net
Hardware|Other |x86
Version|0.9.36. |0.9.16.
Regression SHA1| |abecd9e393925e008449a80ec14
| |682790b29042c
OS|other |Linux
--
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=14277
Summary: SnelStart installer bails out with error box
Product: Wine
Version: 1.1.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tux_rocker(a)reinier.de
When installing the SnelStart Demo (downloadable at
http://www.snelstart.nl/download/SetupDemoSnelStart.exe), the installer first
downloads a file "dotnetfx.exe" but then fails with an error box saying "1621:
Kan de handtekening van het bestand dotnetfx.exe niet controleren." (Google
shows that the English version is "1621: Failed to verify signature of
file...").
Under Windows, the installer works.
--
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=4652
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
URL| |http://download.macromedia.
| |com/pub/dreamweaver/esd/dwm
| |x2004_trial_en_win.exe
Hardware|Other |x86
Version|unspecified |0.9.8.
--
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=36908
Bug ID: 36908
Summary: valgrind shows an unitialized variable in
dlls/ieframe/tests/ie.c (nsWindowRoot::Release)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==24504== Conditional jump or move depends on uninitialised value(s)
==24504== at 0x10433214: nsWindowRoot::Release (in
/home/austin/.wine/drive_c/windows/system32/gecko/2.24/wine_gecko/xul.dll)
==24504== Uninitialised value was created by a client request
==24504== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==24504== by 0x7BC4C641: initialize_block (heap.c:240)
==24504== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==24504== by 0x6F9176B: msvcrt_heap_alloc (heap.c:70)
==24504== by 0x6F92330: MSVCRT_malloc (heap.c:408)
==24504== by 0x80C71095: moz_xmalloc (mozalloc.cpp:54)
==24504== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==24504== by 0x6D4F1B3: init_xpcom (nsembed.c:698)
==24504== by 0x6D4F626: load_gecko (nsembed.c:774)
==24504== by 0x6D54013: create_nscontainer (nsembed.c:2042)
==24504== by 0x6CD4477: HTMLDocument_Create (htmldoc.c:4756)
==24504== by 0x6D3E178: ClassFactory_CreateInstance (main.c:238)
==24504== by 0x4EE10A2: CoCreateInstance (unknwn.h:226)
==24504== by 0x4E042B2: create_mime_object (binding.c:258)
==24504== by 0x4E04652: create_object (binding.c:308)
==24504== by 0x4E071E8: report_data (binding.c:1077)
==24504== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==24504== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==24504== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==24504== by 0x4E0910E: process_tasks (bindprot.c:57)
==24504==
==24504== Conditional jump or move depends on uninitialised value(s)
==24504== at 0x10433257: nsWindowRoot::Release (in
/home/austin/.wine/drive_c/windows/system32/gecko/2.24/wine_gecko/xul.dll)
==24504== by 0x10418F9F: nsGlobalWindow::SetNewDocument
(nsglobalwindow.cpp:2231)
==24504== by 0x1014C7FB: nsDocumentViewer::InitInternal
(nsdocumentviewer.cpp:937)
==24504== by 0x1014D13C: nsDocumentViewer::Init (nsdocumentviewer.cpp:683)
==24504== by 0x109B3C6C: nsCOMPtr_base::assign_from_qi_with_error
(nscomptr.cpp:65)
==24504== by 0x800EEB43: ???
==24504== Uninitialised value was created by a client request
==24504== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==24504== by 0x7BC4C641: initialize_block (heap.c:240)
==24504== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==24504== by 0x6F9176B: msvcrt_heap_alloc (heap.c:70)
==24504== by 0x6F92330: MSVCRT_malloc (heap.c:408)
==24504== by 0x80C71095: moz_xmalloc (mozalloc.cpp:54)
==24504== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==24504== by 0x6D4F1B3: init_xpcom (nsembed.c:698)
==24504== by 0x6D4F626: load_gecko (nsembed.c:774)
==24504== by 0x6D54013: create_nscontainer (nsembed.c:2042)
==24504== by 0x6CD4477: HTMLDocument_Create (htmldoc.c:4756)
==24504== by 0x6D3E178: ClassFactory_CreateInstance (main.c:238)
==24504== by 0x4EE10A2: CoCreateInstance (unknwn.h:226)
==24504== by 0x4E042B2: create_mime_object (binding.c:258)
==24504== by 0x4E04652: create_object (binding.c:308)
==24504== by 0x4E071E8: report_data (binding.c:1077)
==24504== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==24504== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==24504== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==24504== by 0x4E0910E: process_tasks (bindprot.c:57)
==24504==
--
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=36907
Bug ID: 36907
Summary: valgrind shows an unitialized variable in
dlls/ieframe/tests/ie.c (nsEventStateManager::Release)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==24012== Conditional jump or move depends on uninitialised value(s)
==24012== at 0x103064CA: nsEventStateManager::Release (in
/home/austin/.wine/drive_c/windows/system32/gecko/2.24/wine_gecko/xul.dll)
==24012== Uninitialised value was created by a client request
==24012== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==24012== by 0x7BC4C641: initialize_block (heap.c:240)
==24012== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==24012== by 0x6FA276B: msvcrt_heap_alloc (heap.c:70)
==24012== by 0x6FA3330: MSVCRT_malloc (heap.c:408)
==24012== by 0x80D71095: moz_xmalloc (mozalloc.cpp:54)
==24012== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==24012== by 0x6D601B3: init_xpcom (nsembed.c:698)
==24012== by 0x6D60626: load_gecko (nsembed.c:774)
==24012== by 0x6D65013: create_nscontainer (nsembed.c:2042)
==24012== by 0x6CE5477: HTMLDocument_Create (htmldoc.c:4756)
==24012== by 0x6D4F178: ClassFactory_CreateInstance (main.c:238)
==24012== by 0x4EF20A2: CoCreateInstance (unknwn.h:226)
==24012== by 0x4E192B2: create_mime_object (binding.c:258)
==24012== by 0x4E19652: create_object (binding.c:308)
==24012== by 0x4E1C1E8: report_data (binding.c:1077)
==24012== by 0x4E1C531: InternetProtocolSink_ReportData (binding.c:1126)
==24012== by 0x4E218F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==24012== by 0x4E22441: report_data_proc (urlmon.h:3113)
==24012== by 0x4E1E10E: process_tasks (bindprot.c:57)
==24012==
--
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=36905
Bug ID: 36905
Summary: valgrind shows a few unitialized variables in
dlls/ieframe/tests/ie.c (nsGlobalWindow::Release)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
This one shows up a few times in different ways, not sure if they're the same
or not. I'm listing all nsGlobalWindow::Release issues in dlls/ieframe/ie.c
here, if it turns out to be multiple issues, we can split it.
First, I see:
==23512== Conditional jump or move depends on uninitialised value(s)
==23512== at 0x10403D2B: nsGlobalWindow::Release (in
/home/austin/.wine/drive_c/windows/system32/gecko/2.24/wine_gecko/xul.dll)
==23512== Uninitialised value was created by a client request
==23512== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==23512== by 0x7BC4C641: initialize_block (heap.c:240)
==23512== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==23512== by 0x781A76B: msvcrt_heap_alloc (heap.c:70)
==23512== by 0x781B330: MSVCRT_malloc (heap.c:408)
==23512== by 0x80C71095: moz_xmalloc (mozalloc.cpp:54)
==23512== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==23512== by 0x75D81B3: init_xpcom (nsembed.c:698)
==23512== by 0x75D8626: load_gecko (nsembed.c:774)
==23512== by 0x75DD013: create_nscontainer (nsembed.c:2042)
==23512== by 0x755D477: HTMLDocument_Create (htmldoc.c:4756)
==23512== by 0x75C7178: ClassFactory_CreateInstance (main.c:238)
==23512== by 0x4EE10A2: CoCreateInstance (unknwn.h:226)
==23512== by 0x4E042B2: create_mime_object (binding.c:258)
==23512== by 0x4E04652: create_object (binding.c:308)
==23512== by 0x4E071E8: report_data (binding.c:1077)
==23512== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==23512== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==23512== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==23512== by 0x4E0910E: process_tasks (bindprot.c:57)
==23512==
which doesn't help much. I also get:
==23512== Conditional jump or move depends on uninitialised value(s)
==23512== at 0x10403D74: nsGlobalWindow::Release (in
/home/austin/.wine/drive_c/windows/system32/gecko/2.24/wine_gecko/xul.dll)
==23512== by 0x10666AEF: nsWebBrowser::Create (nswebbrowser.cpp:1206)
==23512== by 0x75DCC14: init_nscontainer (nsiface.h:61338)
==23512== by 0x75DD0B1: create_nscontainer (nsembed.c:2060)
==23512== by 0x755D477: HTMLDocument_Create (htmldoc.c:4756)
==23512== by 0x75C7178: ClassFactory_CreateInstance (main.c:238)
==23512== by 0x4EE10A2: CoCreateInstance (unknwn.h:226)
==23512== by 0x4E042B2: create_mime_object (binding.c:258)
==23512== by 0x4E04652: create_object (binding.c:308)
==23512== by 0x4E071E8: report_data (binding.c:1077)
==23512== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==23512== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==23512== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==23512== by 0x4E0910E: process_tasks (bindprot.c:57)
==23512== by 0x4E0915C: notif_wnd_proc (bindprot.c:68)
==23512== by 0x53636FD: ??? (winproc.c:173)
==23512== by 0x5363872: call_window_proc (winproc.c:244)
==23512== by 0x5365A0B: WINPROC_call_window (winproc.c:900)
==23512== by 0x5326C44: DispatchMessageW (message.c:4022)
==23512== by 0x4D8FF36: IEWinMain (iexplore.c:1061)
==23512== Uninitialised value was created by a client request
==23512== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==23512== by 0x7BC4C641: initialize_block (heap.c:240)
==23512== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==23512== by 0x781A76B: msvcrt_heap_alloc (heap.c:70)
==23512== by 0x781B330: MSVCRT_malloc (heap.c:408)
==23512== by 0x80C71095: moz_xmalloc (mozalloc.cpp:54)
==23512== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==23512== by 0x75D81B3: init_xpcom (nsembed.c:698)
==23512== by 0x75D8626: load_gecko (nsembed.c:774)
==23512== by 0x75DD013: create_nscontainer (nsembed.c:2042)
==23512== by 0x755D477: HTMLDocument_Create (htmldoc.c:4756)
==23512== by 0x75C7178: ClassFactory_CreateInstance (main.c:238)
==23512== by 0x4EE10A2: CoCreateInstance (unknwn.h:226)
==23512== by 0x4E042B2: create_mime_object (binding.c:258)
==23512== by 0x4E04652: create_object (binding.c:308)
==23512== by 0x4E071E8: report_data (binding.c:1077)
==23512== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==23512== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==23512== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==23512== by 0x4E0910E: process_tasks (bindprot.c:57)
==23512==
--
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=36906
Bug ID: 36906
Summary: valgrind shows a few unitialized variables in
dlls/ieframe/tests/ie.c (nsDocument::Release)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==23635== Conditional jump or move depends on uninitialised value(s)
==23635== at 0x1029809B: nsDocument::Release (nsdocument.cpp:1611)
==23635== Uninitialised value was created by a client request
==23635== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==23635== by 0x7BC4C641: initialize_block (heap.c:240)
==23635== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==23635== by 0x781176B: msvcrt_heap_alloc (heap.c:70)
==23635== by 0x7812330: MSVCRT_malloc (heap.c:408)
==23635== by 0x80C71095: moz_xmalloc (mozalloc.cpp:54)
==23635== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==23635== by 0x75A21B3: init_xpcom (nsembed.c:698)
==23635== by 0x75A2626: load_gecko (nsembed.c:774)
==23635== by 0x75A7013: create_nscontainer (nsembed.c:2042)
==23635== by 0x7527477: HTMLDocument_Create (htmldoc.c:4756)
==23635== by 0x7591178: ClassFactory_CreateInstance (main.c:238)
==23635== by 0x4EDD0A2: CoCreateInstance (unknwn.h:226)
==23635== by 0x4E042B2: create_mime_object (binding.c:258)
==23635== by 0x4E04652: create_object (binding.c:308)
==23635== by 0x4E071E8: report_data (binding.c:1077)
==23635== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==23635== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==23635== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==23635== by 0x4E0910E: process_tasks (bindprot.c:57)
==23635==
--
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=36904
Bug ID: 36904
Summary: valgrind shows a few unitialized variables in
dlls/ieframe/tests/ie.c (js::frontend)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Unfortunately, I don't know what files these are in, apparently a large one:
==1840== warning: ignoring line info entry with huge line number (16707566)
==1840== Can't handle line numbers greater than 1048575, sorry
==1840== (Nb: this message is only shown once)
I checked the wine-mozilla source, but the largest file isn't even close:
140456 ./db/sqlite3/src/sqlite3.c
137413 ./security/nss/lib/sqlite/sqlite3.c
presumably that line number count includes headers, etc. Anywho, the bugs:
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E4C571:
js::frontend::Parser<js::frontend::FullParseHandler>::newFunction (???:1207)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E4C58A:
js::frontend::Parser<js::frontend::FullParseHandler>::newFunction (???:1209)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E4D5B2:
js::frontend::FunctionBox::FunctionBox<js::frontend::FullParseHandler>
(???:482)
==1840== by 0xA69C4AF: ???
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E4F2AD:
js::frontend::Parser<js::frontend::FullParseHandler>::leaveFunction (???:1318)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E4CF11:
js::frontend::Parser<js::frontend::FullParseHandler>::memberExpr (???:6244)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E59FF0:
js::frontend::Parser<js::frontend::FullParseHandler>::primaryExpr (???:6639)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E59B27:
js::frontend::Parser<js::frontend::FullParseHandler>::primaryExpr (???:6439)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x7035ADB: _chkstk (???:91)
==1840==
==1840== Conditional jump or move depends on uninitialised value(s)
==1840== at 0x6E4D5B2:
js::frontend::FunctionBox::FunctionBox<js::frontend::FullParseHandler>
(???:482)
==1840== Uninitialised value was created by a stack allocation
==1840== at 0x6E585E0:
js::frontend::Parser<js::frontend::FullParseHandler>::functionArgsAndBody
(???:2041)
==1840==
--
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=36903
Bug ID: 36903
Summary: valgrind shows an unitialized variable in
dlls/ieframe/tests/ie.c
(nsDocShell::EnsureScriptEnvironment)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==2050== Conditional jump or move depends on uninitialised value(s)
==2050== at 0x10629412: nsDocShell::EnsureScriptEnvironment
(nsdocshell.cpp:11558)
==2050== by 0x10626070: nsDocShell::GetInterface (nsdocshell.cpp:949)
==2050== by 0x109B4D9F: nsGetInterface::operator()
(nsiinterfacerequestorutils.cpp:19)
==2050== by 0x109B3D79: nsCOMPtr_base::assign_from_helper (nscomptr.cpp:110)
==2050== by 0x10664C99: nsWebBrowser::GetContentDOMWindow
(nswebbrowser.cpp:369)
==2050== by 0x10666AEF: nsWebBrowser::Create (nswebbrowser.cpp:1206)
==2050== by 0x75DCC14: init_nscontainer (nsiface.h:61338)
==2050== by 0x75DD0B1: create_nscontainer (nsembed.c:2060)
==2050== by 0x755D477: HTMLDocument_Create (htmldoc.c:4756)
==2050== by 0x75C7178: ClassFactory_CreateInstance (main.c:238)
==2050== by 0x4EDD0A2: CoCreateInstance (unknwn.h:226)
==2050== by 0x4E042B2: create_mime_object (binding.c:258)
==2050== by 0x4E04652: create_object (binding.c:308)
==2050== by 0x4E071E8: report_data (binding.c:1077)
==2050== by 0x4E07531: InternetProtocolSink_ReportData (binding.c:1126)
==2050== by 0x4E0C8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==2050== by 0x4E0D441: report_data_proc (urlmon.h:3113)
==2050== by 0x4E0910E: process_tasks (bindprot.c:57)
==2050== by 0x4E0915C: notif_wnd_proc (bindprot.c:68)
==2050== by 0x53636FD: ??? (winproc.c:173)
==2050== Uninitialised value was created by a stack allocation
==2050== at 0x106293A2: nsDocShell::EnsureScriptEnvironment
(nsdocshell.cpp:11532)
again, saw this one with a few variations, this suppression
{
<insert_a_suppression_name_here>
Memcheck:Cond
...
fun:nsDocShell::EnsureScriptEnvironment
fun:nsDocShell::GetInterface
fun:nsGetInterface::operator()
fun:nsCOMPtr_base::assign_from_helper
fun:nsWebBrowser::GetContentDOMWindow
fun:nsWebBrowser::Create
fun:init_nscontainer
fun:create_nscontainer
fun:HTMLDocument_Create
fun:ClassFactory_CreateInstance
fun:CoCreateInstance
fun:create_mime_object
fun:create_object
fun:report_data
fun:InternetProtocolSink_ReportData
fun:ProtocolSinkHandler_ReportData
fun:report_data_proc
fun:process_tasks
...
}
--
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=36902
Bug ID: 36902
Summary: valgrind shows an unitialized variable in
dlls/ieframe/tests/ie.c (nsLayoutStatics::Initialize)
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==1236== Conditional jump or move depends on uninitialised value(s)
==1236== at 0x1040032C: nsFocusManager::Release (in
/home/austin/.wine/drive_c/windows/system32/gecko/2.24/wine_gecko/xul.dll)
==1236== by 0x100DC893: nsPrefBranch::AddObserver (nsprefbranch.cpp:641)
==1236== by 0x100D8578: mozilla::Preferences::AddWeakObserver
(preferences.cpp:1411)
==1236== by 0x10117D70: nsLayoutStatics::Initialize
(nslayoutstatics.cpp:244)
==1236== by 0x109DA397: nsComponentManagerImpl::CreateInstanceByContractID
(nscomponentmanager.cpp:1089)
==1236== by 0x109DA807: nsComponentManagerImpl::GetServiceByContractID
(nscomponentmanager.cpp:1449)
==1236== by 0x109B458A: CallGetService (nscomponentmanagerutils.cpp:62)
==1236== by 0x109B977E: NS_InitXPCOM2 (nsxpcominit.cpp:489)
==1236== by 0x75E81B3: init_xpcom (nsembed.c:698)
==1236== by 0x75E8626: load_gecko (nsembed.c:774)
==1236== by 0x75ED013: create_nscontainer (nsembed.c:2042)
==1236== by 0x756D477: HTMLDocument_Create (htmldoc.c:4756)
==1236== by 0x75D7178: ClassFactory_CreateInstance (main.c:238)
==1236== by 0x4EEE0A2: CoCreateInstance (unknwn.h:226)
==1236== by 0x4E152B2: create_mime_object (binding.c:258)
==1236== by 0x4E15652: create_object (binding.c:308)
==1236== by 0x4E181E8: report_data (binding.c:1077)
==1236== by 0x4E18531: InternetProtocolSink_ReportData (binding.c:1126)
==1236== by 0x4E1D8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==1236== by 0x4E1E441: report_data_proc (urlmon.h:3113)
==1236== Uninitialised value was created by a client request
==1236== at 0x7BC4C4D6: mark_block_uninitialized (heap.c:209)
==1236== by 0x7BC4C641: initialize_block (heap.c:240)
==1236== by 0x7BC50F4D: RtlAllocateHeap (heap.c:1717)
==1236== by 0x782A76B: msvcrt_heap_alloc (heap.c:70)
==1236== by 0x782B330: MSVCRT_malloc (heap.c:408)
==1236== by 0x80C71095: moz_xmalloc (mozalloc.cpp:54)
==1236== by 0x109B96F7: NS_InitXPCOM2 (nsxpcominit.cpp:464)
==1236== by 0x75E81B3: init_xpcom (nsembed.c:698)
==1236== by 0x75E8626: load_gecko (nsembed.c:774)
==1236== by 0x75ED013: create_nscontainer (nsembed.c:2042)
==1236== by 0x756D477: HTMLDocument_Create (htmldoc.c:4756)
==1236== by 0x75D7178: ClassFactory_CreateInstance (main.c:238)
==1236== by 0x4EEE0A2: CoCreateInstance (unknwn.h:226)
==1236== by 0x4E152B2: create_mime_object (binding.c:258)
==1236== by 0x4E15652: create_object (binding.c:308)
==1236== by 0x4E181E8: report_data (binding.c:1077)
==1236== by 0x4E18531: InternetProtocolSink_ReportData (binding.c:1126)
==1236== by 0x4E1D8F0: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==1236== by 0x4E1E441: report_data_proc (urlmon.h:3113)
==1236== by 0x4E1A10E: process_tasks (bindprot.c:57)
==1236==
I see several variations of this pattern, here's the exact suppression I'm
using for this issue:
{
<insert_a_suppression_name_here>
Memcheck:Cond
fun:nsFocusManager::Release
...
fun:nsLayoutStatics::Initialize
fun:nsComponentManagerImpl::CreateInstanceByContractID
fun:nsComponentManagerImpl::GetServiceByContractID
fun:CallGetService
fun:NS_InitXPCOM2
fun:init_xpcom
fun:load_gecko
fun:create_nscontainer
fun:HTMLDocument_Create
fun:ClassFactory_CreateInstance
fun:CoCreateInstance
fun:create_mime_object
fun:create_object
fun:report_data
fun:InternetProtocolSink_ReportData
fun:ProtocolSinkHandler_ReportData
...
}
--
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=27490
Summary: Operation FlashPoint GOTY 1.96 - button on my keyboard
4 ('{) and 6 (-|) inactive.
Product: Wine
Version: 1.2.3
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lill.guill(a)gmail.com
Hello,
When I play the game Operation FlashPoint GOTY 1.96 keys 4 ('{) and 6 (-|) are
not active.
These buttons perform actions to my soldiers.
I have no error message just two buttons inactive.
Thanks.
--
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=27791
Summary: Lightworks: Unhandled page fault on read access
Product: Wine
Version: 1.3.22
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cellstorm(a)operamail.com
Created an attachment (id=35551)
--> (http://bugs.winehq.org/attachment.cgi?id=35551)
backtrace of ntcardvt.exe (which is started by Lightworks.exe)
Lightworks installs / starts up fine with wine1.3.22, Ubuntu Maverick 64bit. I
use no native dll overrides.
But It crashes when I click on the field to enter a name of the project. Same
happens when I use "restore from Archive", and click on choose.
Backtrace speaks "in kernel32 (0x0990e6d0)" so I assume it's a kernel issue.
you can get my zipped wine folder at
openArtisthq.org/Lightworks.zip
I choosed to do that because to run Lightworks, you will at least need the
matrox vfw drivers installed, and these are bundled here
(Lightworks/.wine/drive_c/Program Files/Matrox VFW Software Codecs), as their
installer fails to run in wine.
--
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=31384
Bug #: 31384
Summary: unable to run my VB6 based application
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: suvankar_moitra(a)yahoo.com
Classification: Unclassified
I am unable to run vb6 based application, also i am attaching the log file for
the above.
Requesting your help to resolved my issue. If any other information required
please mail me on suvankar_moitra(a)yahoo.com.
OS Version : Novell SLED11SP2
Wine Version: wine-1.5.10
--
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=18468
Summary: Unhandled exception while trying to launch Starcraft
from ICCup Launcher
Product: Wine
Version: 1.1.21
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lukis_mail(a)wp.pl
Created an attachment (id=21081)
--> (http://bugs.winehq.org/attachment.cgi?id=21081)
Run with WINEDEBUG=warn+all
The ICCup Launcher
<http://appdb.winehq.org/objectManager.php?sClass=version&iId=14914&iTesting…>
run ok but when trying to run Starcraft it pushes unhandled exception and the
Launcher window crashes (the tryicon is still alive and running), after this
the Starcraft runs without ICCup launcher and no antihack is present in game.
Main problem:
Unhandled exception: page fault on write access to 0x7ee2a018 in 32-bit code
(0x7ef8caca).
Wine: 1.1.20~winehq1-1
Starcraft version: 1.16.1
ICCup Launcher version: 1.4 build 92
OS: Debian Ustable
Arch: amd64
Kernel: 2.6.29 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=28584
Bug #: 28584
Summary: Internal Program Buggy "A1"
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jayseejc3191(a)gmail.com
Classification: Unclassified
Created attachment 36727
--> http://bugs.winehq.org/attachment.cgi?id=36727
Error log
Lots of bugs...
Trying to print, console output:
fixme:enhmetafile:EMFDRV_GetDeviceCaps Unimplemented cap 104
fixme:enhmetafile:EMFDRV_GetDeviceCaps Unimplemented cap 104
fixme:winspool:OpenPrinterW PRINTER_DEFAULTS ignored => (null),(nil),0x000f000c
fixme:winspool:OpenPrinterW PRINTER_DEFAULTS ignored => (null),(nil),0x000f000c
fixme:enhmetafile:EMFDRV_GetDeviceCaps Unimplemented cap 104
fixme:font:WineEngRemoveFontResourceEx (L"XppNat.dll", 0, (nil)): stub
Program crashes using internal crash handler
Trying to access some aspects of program, console output:
fixme:font:WineEngRemoveFontResourceEx (L"XppNat.dll", 0, (nil)): stub
Program crashes using internal crash handler
Error logs 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=29801
Bug #: 29801
Summary: Ground Vehicle Is Partially Stuck At Beginning of 1st
Level - Battle for Naboo
Product: Wine
Version: 1.3.16
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jthomas97411(a)yahoo.com
Classification: Unclassified
Similar to bug 29797, except you can literally wiggle your way out of this one.
"At the beginning of the first level when in Wine, the flash speeder doesn't go
forward. In Windows, it starts going forward unless you put the brake on.
To get the vehicle to go forward in Wine, if you can, you have to "wiggle" it.
You put the thrusters on, point it all the way off to one side (left or right),
then all the way to the other and wiggle it back and forth until it snaps out
of it and goes forward.
In later versions of Wine, however, you cannot get it to go forward no matter
how much you wiggle it.
Even back in Wine 1.3.16 and 1.3.20, you had to wiggle the flash speeder "out
of it" to get it to move forward at the first level.
After some bisecting, I found out that in Wine 1.3.28, you can wiggle your way
out, but in 1.3.29 you can't wiggle your way out. So a patch from ~.28 to ~.29
broke it."
Yes, I just quoted myself.
I'm putting 1.3.16 as the version, though I've never seen any version not have
this issue (unless totally stuck).
I'm thinking that this effects game-play elsewhere in that sometimes there are
issues getting the brakes off. I don't think I'm at a point to make "having a
hard time coming off the brake" a separate bug.
Note that the transition from 1.3.28 to ~.29 also caused the "line-iness" bug:
29797. Maybe they are related?
Jake
--
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=30315
Bug #: 30315
Summary: Program fails to start - Unhandled exception for The
Clue by Neo (Freeware)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: JamesR777(a)hotmail.co.uk
Classification: Unclassified
"The Clue" by Neo software using Wine 1.4 on Linux Ubuntu 10.10.
The game fails to start and Wine sends up an error stating that a serious
problem has occurred. Details of the unhandled exception are in the backlog
(attached).
Wine gives no indication that the game is loading but almost immediately flags
up the error. Tinkering with Wine's configuration settings seem to give no
affect and still 'The Clue' is unable to run.
'The Clue' is a classic game that was re-released as freeware in 2001. It may
be that it is too old to be ran under modern conditions? Which would be a
shame.
--
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=34610
Bug #: 34610
Summary: Naver Line 3.2.0.76: page fault on read access
0x7d84adff
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: irisu783(a)yahoo.co.jp
Classification: Unclassified
Created attachment 46119
--> http://bugs.winehq.org/attachment.cgi?id=46119
log of WINDEBUG=fixme+all,warn+all,+relay
Upgrade Line from 3.1 to 3.2, which added video chat functionality.
--
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=25328
Summary: Borked up menu in Syndicates of Arkon
Product: Wine
Version: 1.3.8
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: steffen.linux(a)gmx.de
Created an attachment (id=32194)
--> (http://bugs.winehq.org/attachment.cgi?id=32194)
file with the wine output when you start syndicates of arkon
When you start the game, you'll see a menu where you can enter log-in
information, start the game, see some news (don't know what, because it's
cyrillic) and configure the game.
Problem: The menu is really borked up, you can only see parts of it, a text
field is not visible because of that (username) and 2 buttons are cut in half,
plus (at least I guess that) there should be a checkbox for saying if you want
to save log-in informations ( I don't know it, but in the directory of the game
is a text file where you can enter your log-in information and after that the
textfield(s) are filled with your log-in informations)
A screenshot is attached.
A logfile is 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=26085
Summary: The program Korsakow.exe has encountered a serious
problem and needs to close.
Product: Wine
Version: 20050930
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: a.hadzi(a)gold.ac.uk
when trying to boot up the application http://korsakow.org the above error
message is given that 'The program Korsakow.exe has encountered a serious
problem and needs to close.' as this does not happen under windows i report it
here.
--
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=34265
Bug #: 34265
Summary: Sohnar's Traffic Live Adobe AIR app crashes on load
Product: Wine
Version: 1.4.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wininet
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robertgahunt(a)gmail.com
Classification: Unclassified
Created attachment 45618
--> http://bugs.winehq.org/attachment.cgi?id=45618
The crashes backtrace
I was having issues with Sohnar's Traffic Live Adobe AIR app not connecting to
the internet and I saw on some forums mention of wininet. So I added it to Wine
and now Traffic crashes immediately on load.
The app requires the latest version of Adobe AIR hence the need for Wine.
Traffic is the project management tool used by the company I work for and is a
big part of my day-to-day work load. At the moment I am having to run Windows
as a second OS just to do this task.
--
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=31494
Bug #: 31494
Summary: Dota 2: player name above hero is corrupted
Product: Wine
Version: 1.5.11
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phoenix(a)mail.ru
Classification: Unclassified
Created attachment 41402
--> http://bugs.winehq.org/attachment.cgi?id=41402
Corrupted player name above riki
Repro:
1. Start/watch a dota 2 game
2. Check player name above all the heroes
Result:
Often, player name is not shown or corrupted, see screenshot (it shows only
"str" there)
Expected:
Player name should always be properly shown (DD^mstr in the captured on
screenshot case)
Note:
I'm not sure if this bug and bug #31493 have the same nature, so filling
separate bug for this.
--
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=36824
Bug ID: 36824
Summary: Ошибка
Product: Wine
Version: 1.7.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mpm15(a)bk.ru
Ошибка при запуске
--
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=16191
Summary: Google Sketchup uploads empty crash records to bugsplat
Product: Wine
Version: 1.1.9
Platform: Other
URL: http://bugsplatsoftware.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Sketchup uses Bugsplat to collect crash data,
but Bugsplat says that all the Wine crashes have
no data.
To reproduce, we can probably get a trial account at
bugsplatsoftware.com, build their demo crasher app under Visual Studio,
and run it under Wine; I bet it, too, will upload empty crash data.
You can't build with Visual Studio Express; I've already tried. That
fails because it doesn't bundle MFC.
--
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=36856
Bug ID: 36856
Summary: nsf2midi Ver0.05a crashes in wine-1.5.4
Product: Wine
Version: 1.5.3
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: justineuro.moin(a)gmail.com
Created attachment 48950
--> http://bugs.winehq.org/attachment.cgi?id=48950
Program Error Details from wine debug pop-up window
nsf2midi Ver0.05a crashes in wine-1.5.4
ran in wine console (after "wine start cmd")
addl message in linux stdout:
wine: Unhandled page fault on read access to 0x00000001 at address 0x407547
(thread 0030), starting debugger...
/usr/bin/xdg-open: line 406: xprop: not found
console.error: ddg_for_firefox:
Nothing to show.
console.error: ddg_for_firefox:
Nothing to show.
console.error: ddg_for_firefox:
Nothing to show.
--
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=31123
Bug #: 31123
Summary: libc.so.6 no code accessible
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: night_crawl3r(a)abv.bg
Classification: Unclassified
Created attachment 40858
--> http://bugs.winehq.org/attachment.cgi?id=40858
backtrace
crash at login with "internal errors - invalid parameters received"
--
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=36292
Bug ID: 36292
Summary: valgrind shows an invalid read when loading gecko in
ieframe/tests/ie.c (urlmon/report_data_proc)
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: urlmon
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==18159== Conditional jump or move depends on uninitialised value(s)
==18159== at 0x69DA2A6E: ???
==18159== by 0x69D912D8: ???
==18159== by 0x6B05358C: ???
==18159== by 0x69FA8430: ???
==18159== by 0x69F7B782: ???
==18159== by 0x69F7C6BE: ???
==18159== by 0x7324E34: init_nscontainer (nsiface.h:59567)
==18159== by 0x73252D1: create_nscontainer (nsembed.c:2065)
==18159== by 0x72A3B68: HTMLDocument_Create (htmldoc.c:4751)
==18159== by 0x730FC60: ClassFactory_CreateInstance (main.c:238)
==18159== by 0x506FE26: CoCreateInstance (unknwn.h:226)
==18159== by 0x4D9A316: create_mime_object (binding.c:258)
==18159== by 0x4D9A6B6: create_object (binding.c:308)
==18159== by 0x4D9D24C: report_data (binding.c:1077)
==18159== by 0x4D9D595: InternetProtocolSink_ReportData (binding.c:1126)
==18159== by 0x4DA2920: ProtocolSinkHandler_ReportData (urlmon.h:3113)
==18159== by 0x4DA3471: report_data_proc (urlmon.h:3113)
==18159== by 0x4D9F172: process_tasks (bindprot.c:57)
==18159== by 0x4D9F1C0: notif_wnd_proc (bindprot.c:68)
==18159== by 0x54D8509: ??? (winproc.c:173)
==18159== Uninitialised value was created by a stack allocation
==18159== at 0x69DA29E6: ???
==18159==
--
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=28057
Summary: Company of Heroes network drops sometimes after 17
minutes.
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bram.ridder(a)gmail.com
When I updated to the latest version of Wine I noticed that all matches I've
played online with Company of Heroes (using the Automatch function) will drop
the opponent around the 17 minutes mark.
This is quite serious as to me it seems I'm committing what is called "drop
hacking" in the CoH community and since I don't want my key to be banned and do
like a proper game of CoH. This bug was not present in version 1.3.24 of Wine.
--
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=27799
Summary: unhandled page fault on execute access to 0x00000000
at address (nil)
Product: Wine
Version: 1.3.24
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: arriees(a)gmail.com
Created an attachment (id=35565)
--> (http://bugs.winehq.org/attachment.cgi?id=35565)
error back trace
hi, I am running Slackware64 13.37 with multilib for 32bit compatibility. Wine
version is 1.3.24. I am trying to run World of Warcraft using wine. I am
getting the following error after WoW starts.
Unhandled exception: page fault on execute access to 0x00000000 in 32-bit code
(0x00000000).
I have attached the error back trace with this bug report.
Regards,
Aravind.
--
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=30044
Bug #: 30044
Summary: Safari crashes, turns zombie
Product: Wine
Version: 1.4-rc2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ssjgokux3(a)gmail.com
Classification: Unclassified
I launched 5.1.2 of Safari and it just hangs and when I close it, Wine stayed
up. So I looked at the task manager and it said that Safari.exe was zombie. It
does it every time. I got a backtrace of it.
Wine: 1.4-rc2
OS: Trisquel GNU/Linux-libre 5.0 x86
--
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=15023
Summary: COM Server - Client with Callback Function
Product: Wine
Version: 1.1.3
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leonuho(a)gmail.com
Hi there!
I've got a COM Server called CJS.exe and a Client called ACPX.exe.
The Problem is, that the CJS.exe is a buyed component - so i have no source :/
Now to the error:
I start the server:
notroot@debian:~$ wine CJS.exe
fixme:ole:CoResumeClassObjects stub
then i start the Client:
notroot@debian:~$ wine ACPX.exe
fixme:ole:CoResumeClassObjects stub
And after the Messagebox "before assign callback" opens it looks like: ->
attachment
The problem is in the function where i assign the callback function.
I hope you understand :)
Thanks for 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.
http://bugs.winehq.org/show_bug.cgi?id=29118
Bug #: 29118
Summary: Guild Wars: Texture is corrupted on some trees
Product: Wine
Version: 1.3.32
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
Created attachment 37514
--> http://bugs.winehq.org/attachment.cgi?id=37514
Normal graphic
In Eye of the North there are some trees which get a corrupted texture if
looking from a special angel. It happens not on every tree but on the both from
the screenshots (it is the Sparkfly Swamp. The minimap shows the exact
position).
On the first screenshot all is looking fine. But if I'm changing the angel a
little like in the second screenshot the tree get horizontal stripes. This
happens on the highest and the lowest graphic settings.
I'm using Ubuntu 12.04 dev with a GeForce 8600 GT and the NVIDIA driver version
285.05.09.
--
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=14433
Summary: GuildWars 3D rendering broken
Product: Wine
Version: 1.1.1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sheldonl(a)gmail.com
Created an attachment (id=14755)
--> (http://bugs.winehq.org/attachment.cgi?id=14755)
Normal output from running guildwars
When creating a character and choosing different body types, hair styles, etc.
the 3D rendering is broken. Polygons become visible and textures do not get
rendered properly.
--
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=27960
Summary: Safari hangs on launch
Product: Wine
Version: 1.3.25
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fterekhov(a)gmail.com
Created an attachment (id=35780)
--> (http://bugs.winehq.org/attachment.cgi?id=35780)
terminal log
When starting Safari it hangs and consumes one processor core entirely. Knowing
about starting page bug I've changed start page to Google but with no effect.
Safari is starting, but in a second it hangs completely. Leaving it for a
couple of hours for experimental purposes have no effect too
I've copied a terminal log entirely, because do not understand valuable parts
of it.
--
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=33951
Bug #: 33951
Summary: eve-online graphic bug (screen block)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: antoinemenant(a)hotmail.com
Classification: Unclassified
Created attachment 45097
--> http://bugs.winehq.org/attachment.cgi?id=45097
backtrace
Hi,
This bug appear every time i play eve-online, after 30 min or 1 hour.
there is crash, obviously graphic ( the screen freeze, the monitor go off). the
computer become unavailable (impossible ctrl-alt f2).
--
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=36825
Bug ID: 36825
Summary: Ошибка
Product: Wine
Version: 1.7.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mpm15(a)bk.ru
Ошибка при запуске
--
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=25560
Summary: Fantasy Earth Zero crashes on startup
Product: Wine
Version: 1.3.9
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fernandocarvalho1987(a)hotmail.com
Fantasy Zero is a Square Enix MMO and it is free to play.
You can download the client on the link below:
http://fez.gamepotusa.com/download/client.aspx
The game crashed when I clicked on the start button.
--
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=36872
Bug ID: 36872
Summary: _Launcher.exe (Aura Kingdom Launcher) will not launch
due to a program error
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: advapi32
Assignee: wine-bugs(a)winehq.org
Reporter: baowse117(a)gmail.com
I downloaded Aura Kingdom via Wine (v1.7.16). After it had been fully
downloaded I try to open _Launcher.exe which is the launcher for Aura Kingdom.
It then pops up with small tab which says "The program _Launcher.exe has
encountered a serious problem and needs to close. We are sorry for the
inconvenience." I clicked "show details" and it came up with this
|
|
|
V
Unhandled exception: page fault on read access to 0x00000004 in 32-bit code
(0x00404252).
Register dump:
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f
EIP:00404252 ESP:0032f5d8 EBP:0032f690 EFLAGS:00010246( R- -- I Z- -P- )
EAX:00000000 EBX:003d3d3d ECX:00000000 EDX:01d565c6
ESI:01bc3c28 EDI:01bc3cd0
Stack dump:
0x0032f5d8: 004060a0 01bc3c28 01bc8310 004060ec
0x0032f5e8: 003d3d3d 01bc8310 01bc3c28 01bc8310
0x0032f5f8: 00452af9 003d3d3d 01bc8310 6c90213c
0x0032f608: 00000403 01bc3c28 00134f18 00000000
0x0032f618: 00000000 00000000 00000000 00000000
0x0032f628: 0016f1a8 0032f6ac 01bc3c28 00490a88
0200: sel=1007 base=7ffc0000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x00404252 in _launcher (+0x4252) (0x0032f690)
1 0x0044ee41 in _launcher (+0x4ee40) (0x0032f6b0)
2 0x004510e4 in _launcher (+0x510e3) (0x0032f718)
3 0x00451171 in _launcher (+0x51170) (0x0032f738)
4 0x42b90ada WINPROC_wrapper+0x19() in user32 (0x0032f768)
5 0x42b9141e call_window_proc+0x5d() in user32 (0x0032f7a8)
6 0x42b93ed1 WINPROC_call_window+0x130() in user32 (0x0032f7f8)
7 0x42b54c4f DispatchMessageW+0xae() in user32 (0x0032f8b8)
8 0x00455f73 in _launcher (+0x55f72) (0x42b68650)
0x00404252: movl 0x4(%ecx),%ecx
Modules:
Module Address Debug info Name (229 modules)
ELF 0-82001000 Stabs <wine-loader>
PE 400000- 740000 Deferred _launcher
PE 40001000-401b6000 Deferred libwine.1.0.dylib
ELF 40794000-407af000 Deferred version<elf>
\-PE 407a0000-407ad000 \ version
ELF 42a82000-42ae7000 Deferred wldap32<elf>
\-PE 42a90000-42adb000 \ wldap32
ELF 42ae7000-42c40000 Stabs user32<elf>
\-PE 42af0000-42bf6000 \ user32
ELF 42c40000-42d61000 Deferred gdi32<elf>
\-PE 42c50000-42cf6000 \ gdi32
ELF 42da0000-42e13000 Deferred advapi32<elf>
\-PE 42db0000-42dfb000 \ advapi32
ELF 42e13000-42f18000 Deferred comdlg32<elf>
\-PE 42e20000-42ef6000 \ comdlg32
ELF 42f18000-4316a000 Deferred shell32<elf>
\-PE 42f20000-43128000 \ shell32
ELF 4316a000-431f0000 Deferred shlwapi<elf>
\-PE 43170000-431c9000 \ shlwapi
ELF 431f0000-43309000 Deferred comctl32<elf>
\-PE 43200000-432e1000 \ comctl32
ELF 43309000-4334f000 Deferred winspool<elf>
\-PE 43310000-43345000 \ winspool
ELF 4334f000-4338c000 Deferred oledlg<elf>
\-PE 43360000-43387000 \ oledlg
ELF 4338c000-434d1000 Deferred ole32<elf>
\-PE 43390000-4348e000 \ ole32
ELF 434d1000-43563000 Deferred rpcrt4<elf>
\-PE 434e0000-4353f000 \ rpcrt4
ELF 43563000-4369c000 Deferred oleaut32<elf>
\-PE 43570000-43648000 \ oleaut32
ELF 4369c000-436c3000 Deferred iphlpapi<elf>
\-PE 436a0000-436bd000 \ iphlpapi
ELF 436c3000-436fb000 Deferred ws2_32<elf>
\-PE 436d0000-436f4000 \ ws2_32
PE 436fb000-43780000 Deferred libfreetype.6.dylib
PE 43780000-437b1000 Deferred libpng16.16.dylib
PE 437b1000-437e7000 Deferred libfontconfig.1.dylib
PE 437e7000-43806000 Deferred libexpat.1.dylib
ELF 43806000-438a1000 Deferred winemac<elf>
\-PE 43810000-43878000 \ winemac
PE 45221000-4525b000 Deferred familycontrols
PE 4525b000-45270000 Deferred commercecore
ELF 45270000-452ab000 Deferred uxtheme<elf>
\-PE 45280000-452a4000 \ uxtheme
ELF 46602000-46647000 Deferred usp10<elf>
\-PE 46610000-46642000 \ usp10
ELF 7b800000-7ba6a000 Deferred kernel32<elf>
\-PE 7b810000-7ba2f000 \ kernel32
ELF 7bc00000-7bcdd000 Deferred ntdll<elf>
\-PE 7bc10000-7bca3000 \ ntdll
PE 90008000-9000b000 Deferred carbon
PE 90008000-9000b000 Deferred carbon
PE 90022000-908a5000 Deferred performanceanalysis
PE 90022000-908a5000 Deferred performanceanalysis
PE 90022000-908a5000 Deferred performanceanalysis
PE 90022000-908a5000 Deferred performanceanalysis
PE 907d9000-90915000 Deferred diskimages
PE 907d9000-90915000 Deferred diskimages
PE 908c5000-9095e000 Deferred datadetectorscore
PE 908c5000-9095e000 Deferred datadetectorscore
PE 90b73000-90b79000 Deferred trustevaluationagent
PE 90b75000-90b97000 Deferred libgl.dylib
PE 90b75000-90b97000 Deferred libgl.dylib
PE 90b85000-90ba6000 Deferred libsystem_malloc.dylib
PE 90bf5000-90c31000 Deferred libsystem_m.dylib
PE 90d02000-90d0c000 Deferred libcorevmclient.dylib
PE 90d02000-90d0c000 Deferred libcorevmclient.dylib
PE 90d9d000-90f62000 Deferred libobjc.a.dylib
PE 90f47000-90f6f000 Deferred libresolv.9.dylib
PE 90f84000-91004000 Deferred hiservices
PE 90f84000-91004000 Deferred hiservices
PE 9101a000-91159000 Deferred backup
PE 9101a000-91159000 Deferred backup
PE 910ee000-91136000 Deferred mediakit
PE 910ee000-91136000 Deferred mediakit
PE 910ee000-91136000 Deferred mediakit
PE 9112b000-91452000 Deferred vimage
PE 914a9000-914b2000 Deferred libutil.dylib
PE 914a9000-914b2000 Deferred libutil.dylib
PE 914ad000-914b9000 Deferred iosurface
PE 9173a000-91749000 Deferred libgfxshared.dylib
PE 91743000-917a8000 Deferred remoteviewservices
PE 91743000-917a8000 Deferred remoteviewservices
PE 917f8000-91b1f000 Deferred coredata
PE 917f8000-91b1f000 Deferred coredata
PE 91a5e000-91a68000 Deferred libcgxtype.a.dylib
PE 92223000-92234000 Deferred libkxld.dylib
PE 92223000-92234000 Deferred libkxld.dylib
PE 92232000-92244000 Deferred carbonsound
PE 927bb000-92843000 Deferred printcore
PE 92b81000-92f1d000 Deferred coreimage
PE 92b81000-92f1d000 Deferred coreimage
PE 92b81000-92f1d000 Deferred coreimage
PE 92b81000-92f1d000 Deferred coreimage
PE 93ad4000-93b26000 Deferred bom
PE 94c1d000-94cba000 Deferred ats
PE 94c93000-94cf1000 Deferred iconservices
PE 95001000-9500a000 Deferred libcache.dylib
PE 9519d000-951a4000 Deferred libremovefile.dylib
PE 9519d000-951a4000 Deferred libremovefile.dylib
PE 951b4000-9520a000 Deferred coreservicesinternal
PE 9523b000-95280000 Deferred libglimage.dylib
PE 95284000-95382000 Deferred libiconv.2.dylib
PE 9537f000-95397000 Deferred crashreportersupport
PE 9537f000-95397000 Deferred crashreportersupport
PE 953a5000-953b0000 Deferred loginuicore
PE 953a5000-953b0000 Deferred loginuicore
PE 953a5000-953b0000 Deferred loginuicore
PE 95413000-95560000 Deferred libfontparser.dylib
PE 95619000-95659000 Deferred corevideo
PE 956e0000-957b5000 Deferred coresymbolication
PE 956e0000-957b5000 Deferred coresymbolication
PE 957ba000-957d6000 Deferred libsystem_asl.dylib
PE 957cd000-957ea000 Deferred langanalysis
PE 957cd000-957ea000 Deferred langanalysis
PE 957e5000-95cc0000 Deferred hitoolbox
PE 957e5000-95cc0000 Deferred hitoolbox
PE 957e5000-95cc0000 Deferred hitoolbox
PE 95d89000-95fe3000 Deferred libicucore.a.dylib
PE 95f50000-95f56000 Deferred audiounit
PE 95fab000-9603b000 Deferred heimdal
PE 95fab000-9603b000 Deferred heimdal
PE 96116000-96119000 Deferred cocoa
PE 96117000-961db000 Deferred libcorestorage.dylib
PE 9633a000-963a9000 Deferred scalableuserinterface
PE 9633a000-963a9000 Deferred scalableuserinterface
PE 9633a000-963a9000 Deferred scalableuserinterface
PE 96399000-969e2000 Deferred facecore
PE 967ce000-9681d000 Deferred systemadministration
PE 97392000-9739b000 Deferred efilogin
PE 97392000-9739b000 Deferred efilogin
PE 97395000-973b2000 Deferred librarian
PE 973dc000-97512000 Deferred libcrypto.0.9.8.dylib
PE 97e9c000-9832f000 Deferred coregraphics
PE 985bd000-985c5000 Deferred applicationservices
PE 985bd000-985c5000 Deferred applicationservices
PE 985be000-98702000 Deferred launchservices
PE 9869a000-98748000 Deferred searchkit
PE 987eb000-987f4000 Deferred coreservices
PE 987ec000-98954000 Deferred imageio
PE 98a12000-98a77000 Deferred navigationservices
PE 98a51000-98a61000 Deferred commonauth
PE 98a5b000-98a79000 Deferred sharing
PE 98a7e000-98a94000 Deferred libsystem_platform.dylib
PE 98a7e000-98a94000 Deferred libsystem_platform.dylib
PE 98aa9000-98b07000 Deferred libcups.2.dylib
PE 98b19000-98b65000 Deferred gss
PE 98b4b000-98b73000 Deferred generationalstorage
PE 98b4b000-98b73000 Deferred generationalstorage
PE 98bbc000-98bcc000 Deferred libcgcms.a.dylib
PE 98bbc000-98bcc000 Deferred libcgcms.a.dylib
PE 98d05000-98d18000 Deferred diskarbitration
PE 98d05000-98d18000 Deferred diskarbitration
PE 98d4b000-98e34000 Deferred metadata
PE 98de4000-98e2b000 Deferred debugsymbols
PE 98de4000-98e2b000 Deferred debugsymbols
PE 98e13000-98e75000 Deferred opencl
PE 98e13000-98e75000 Deferred opencl
PE 98e66000-98f0d000 Deferred securityfoundation
PE 98f65000-98fff000 Deferred systemconfiguration
PE 98fcf000-98fe5000 Deferred libxar.1.dylib
PE 99092000-9923f000 Deferred desktopservicespriv
PE 991ca000-991e0000 Deferred opengl
PE 99271000-9928d000 Deferred opendirectory
PE 99271000-9928d000 Deferred opendirectory
PE 99271000-9928d000 Deferred opendirectory
PE 99284000-995fc000 Deferred carboncore
PE 9958f000-9965f000 Deferred colorsync
PE 99621000-99627000 Deferred libodfde.dylib
PE 9968c000-99691000 Deferred liblangid.dylib
PE 996a8000-996cb000 Deferred libpng.dylib
PE 996c4000-996f2000 Deferred ubiquity
PE 99730000-9978f000 Deferred libcorecrypto.dylib
PE 997a1000-997a6000 Deferred libkeymgr.dylib
PE 997a1000-997a6000 Deferred libkeymgr.dylib
PE 997a2000-997cd000 Deferred libdispatch.dylib
PE 997ca000-997db000 Deferred libsystem_pthread.dylib
PE 997ca000-997db000 Deferred libsystem_pthread.dylib
PE 999da000-99a6a000 Deferred symbolication
PE 999da000-99a6a000 Deferred symbolication
PE 999da000-99a6a000 Deferred symbolication
PE 999da000-99a6a000 Deferred symbolication
PE 99a69000-99a9f000 Deferred librip.a.dylib
PE 99a69000-99a9f000 Deferred librip.a.dylib
PE 99e0e000-99ed7000 Deferred qd
PE 99e0e000-99ed7000 Deferred qd
PE 99eb1000-99edd000 Deferred libjpeg.dylib
PE 99eb1000-99edd000 Deferred libjpeg.dylib
PE 99ed6000-99ffc000 Deferred coretext
PE 99fa7000-9a1a4000 Deferred audiotoolbox
PE 99fa7000-9a1a4000 Deferred audiotoolbox
PE 99fa7000-9a1a4000 Deferred audiotoolbox
PE 99fa7000-9a1a4000 Deferred audiotoolbox
PE 9a12d000-9a164000 Deferred chunkinglibrary
PE 9a226000-9a2a0000 Deferred htmlrendering
PE 9a27a000-9a281000 Deferred libcvmspluginsupport.dylib
PE 9a4fd000-9a552000 Deferred libcurl.4.dylib
PE 9a5ac000-9a5b3000 Deferred securityhi
PE 9a5b2000-9a619000 Deferred libfontregistry.dylib
PE 9a629000-9a748000 Deferred discrecording
PE 9a629000-9a748000 Deferred discrecording
PE 9a629000-9a748000 Deferred discrecording
PE 9a629000-9a748000 Deferred discrecording
PE 9a799000-9a7c6000 Deferred openscripting
PE 9a861000-9a918000 Deferred libvmisc.dylib
PE 9a928000-9aa43000 Deferred libxml2.2.dylib
PE 9a928000-9aa43000 Deferred libxml2.2.dylib
PE 9aac6000-9aad6000 Deferred aosnotification
PE 9aef3000-9af46000 Deferred libauto.dylib
PE 9af31000-9af53000 Deferred multitouchsupport
PE 9af31000-9af53000 Deferred multitouchsupport
PE 9af46000-9afad000 Deferred libtiff.dylib
PE 9afa5000-9afb8000 Deferred directoryservice
PE 9afa5000-9afb8000 Deferred directoryservice
PE 9afb0000-9b120000 Deferred coreui
PE 9b097000-9b55a000 Deferred foundation
PE 9b3ec000-9b64e000 Deferred quartzcore
PE 9b3ec000-9b64e000 Deferred quartzcore
PE 9b3ec000-9b64e000 Deferred quartzcore
PE 9b3ec000-9b64e000 Deferred quartzcore
PE 9b6a9000-9ba3b000 Deferred security
PE 9bc41000-9bc4e000 Deferred libunwind.dylib
PE 9be15000-9be4b000 Deferred libxslt.1.dylib
PE 9be15000-9be4b000 Deferred libxslt.1.dylib
PE 9be6a000-9be7f000 Deferred libcsfde.dylib
PE 9be6a000-9be7f000 Deferred libcsfde.dylib
PE 9be6a000-9be7f000 Deferred libcsfde.dylib
PE 9c22d000-9c23f000 Deferred speechrecognition
Threads:
process tid prio (all id:s are in hex)
00000008 (D) Z:\Users\shaineenriquez\Wine
Files\drive_c\AeriaGames\AuraKingdom\_Launcher.exe
00000023 0
00000022 0
00000009 0 <==
0000000e services.exe
0000001d 0
0000001c 0
00000016 0
00000014 0
00000010 0
0000000f 0
00000012 winedevice.exe
0000001b 0
00000018 0
00000017 0
00000013 0
00000019 plugplay.exe
0000001f 0
0000001e 0
0000001a 0
00000020 explorer.exe
00000021 0
System information:
Wine build: wine-1.7.16
Platform: i386
Host system: Darwin
Host version: 13.2.0
--
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=18668
Summary: WLM 8.5 is very slow
Product: Wine
Version: 1.1.22
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrejx(a)gmail.com
Windows Live Messenger 8.5, when finally logged in, is horribly slow and
sluggish.
The slowness is visible mostly in delayed hover effects and scrolling lag.
--
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=30943
Bug #: 30943
Summary: VBALink crashes at start
Product: Wine
Version: 1.5.6
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: weltio(a)web.de
Classification: Unclassified
Created attachment 40595
--> http://bugs.winehq.org/attachment.cgi?id=40595
backtrace of crashed vbalink
When I try to open vbalink by typing "wine VisualBoyAdvance.exe" (in current
dir) it crashes with attached log.
Here you can get vbalink
http://www.vbalink.info/download/vbalink180b0.zip
On my other system wine doesn't have problem with running it however its the
same version. So I think its related to some other piece of 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.
https://bugs.winehq.org/show_bug.cgi?id=36394
Bug ID: 36394
Summary: valgrind shows a few leaks in ieframe/tests/ie.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==10941== 264 bytes in 6 blocks are definitely lost in loss record 5,345 of
6,207
==10941== at 0x7BC508EB: RtlAllocateHeap (heap.c:255)
==10941== by 0x5F61AB1: RPCRT4_io_thread (rpc_server.c:561)
==10941== by 0x7BC7F75F: ??? (in
/home/austin/wine-valgrind-known/dlls/ntdll/ntdll.dll.so)
==10941== by 0x7BC8270C: call_thread_func (signal_i386.c:2630)
==10941== by 0x7BC7F73D: ??? (in
/home/austin/wine-valgrind-known/dlls/ntdll/ntdll.dll.so)
==10941== by 0x7BC88ACB: start_thread (thread.c:428)
==10941== by 0x4217F92: start_thread (pthread_create.c:309)
==10941== by 0x431C7ED: clone (clone.S:129)
==10941==
==10941== 96 bytes in 3 blocks are definitely lost in loss record 4,765 of
6,207
==10941== at 0x7BC508EB: RtlAllocateHeap (heap.c:255)
==10941== by 0x82D2DB9: MSVCRT_malloc (heap.c:329)
==10941== by 0x61E426BF: ???
==10941== by 0x6A6C7934: ???
==10941== by 0x69E6E0A7: ???
==10941== by 0x7BC8270C: call_thread_func (signal_i386.c:2630)
==10941== by 0x7BC7F73D: ??? (in
/home/austin/wine-valgrind-known/dlls/ntdll/ntdll.dll.so)
==10941== by 0x7BC88ACB: start_thread (thread.c:428)
==10941== by 0x4217F92: start_thread (pthread_create.c:309)
==10941== by 0x431C7ED: clone (clone.S:129)
==10941==
==32191== 72 bytes in 1 blocks are definitely lost in loss record 4,423 of
6,205
==32191== at 0x7BC519A7: RtlReAllocateHeap (heap.c:255)
==32191== by 0x7B8442D0: HeapReAlloc (heap.c:281)
==32191== by 0x7B844FCC: GlobalReAlloc (heap.c:679)
==32191== by 0x53AE63D: HGLOBALStreamImpl_SetSize (hglobalstream.c:381)
==32191== by 0x53AE776: HGLOBALStreamImpl_Write (objidl.h:4391)
==32191== by 0x53B6BCD: StdMarshalImpl_MarshalInterface (objidl.h:4384)
==32191== by 0x53B781A: CoMarshalInterface (objidl.h:611)
==32191== by 0x5396C19: CoRegisterClassObject (compobj.c:969)
==32191== by 0x4E4E13B: register_class_object (ieframe_main.c:277)
==32191== by 0x4E5345B: IEWinMain (iexplore.c:1042)
==32191== by 0x4ABFA01: wWinMain (main.c:84)
==32191== by 0x4ABFC43: wmain (exe_wmain.c:51)
==32191== by 0x4ABFB74: __wine_spec_exe_wentry (exe_wentry.c:36)
==32191== by 0x7B85ED3B: ??? (in
/home/austin/wine-valgrind-known/dlls/kernel32/kernel32.dll.so)
==32191== by 0x7B85FD52: start_process (process.c:1097)
==32191== by 0x7BC7F75F: ??? (in
/home/austin/wine-valgrind-known/dlls/ntdll/ntdll.dll.so)
==32191== by 0x7BC8270C: call_thread_func (signal_i386.c:2630)
==32191== by 0x7BC7F73D: ??? (in
/home/austin/wine-valgrind-known/dlls/ntdll/ntdll.dll.so)
==32191== by 0x7BC53D5D: start_process (loader.c:2840)
==32191== by 0x403D63C: ??? (in
/home/austin/wine-valgrind-known/libs/wine/libwine.so.1.0)
==32191==
--
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=36839
Bug ID: 36839
Summary: Family Tree Maker 2012: Crashes during program
initialistion (about 50% complete)
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: graahy(a)sky.com
Created attachment 48927
--> http://bugs.winehq.org/attachment.cgi?id=48927
Backtrace from crash during initial run of FTM.
Started with a new .wine prefix with default settings. Then replaced Mono using
'winetricks dotnet40 corefonts', and confirmed successful installation of
dotnet40 using 'netfx_setupverifier.exe'.
Next installed 'Family Tree Maker' (FTM) program from CD using terminal
commands. Program appeared to install without problems, but numerous 'fixme'
errors recorded and logged.
On first running of the FTM program after installation, the program immediately
prompted that updates were available, and prompted for installation of these.
This was accepted, and the updating appeared to complete before the program
crashed, and a wine bug report prompt displayed. The backtrace was saved (see
attached), and had to press 'Ctrl-C' to recover the terminal prompt.
Out of curiosity, then attempted to run FTM for the second time. Surprisingly,
the standard initialising window was displayed, and initialisation proceeded to
about 50% (as displayed on-screen) before program crashed, and another wine bug
report prompt displayed. This too was saved (as backtrace2), and again had to
press'Ctrl-C' to return to the terminal prompt.
Error logs from the installation and both attempted runs of the FTM program are
available.
NB:- Without replacing Mono with the dotnet40 files the FTM program does not
start at all, although it does appear to install correctly.
--
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=28139
Summary: Wine crashes while playing World of Warcraft with
"free(): invalid next size (normal)"
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dave(a)solar1.net
Created an attachment (id=36052)
--> (http://bugs.winehq.org/attachment.cgi?id=36052)
stack trace of the crash
Periodically while playing World of Warcraft wine will crash with:
** glibc detected *** C:/Program Files/World of Warcraft/Wow.exe: free():
invalid next size (normal): 0xacf5c070 ***
--
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=26094
Summary: unhandled page fault
Product: Wine
Version: 1.3.13
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sophal_s(a)hotmail.com
Created an attachment (id=33284)
--> (http://bugs.winehq.org/attachment.cgi?id=33284)
Log file
Hello all,
I tested 2 different games under steam.exe
Civilization V and Napoleon Total WAR
The installation process of Civ V was perfect . But not the Launcher.
Both have the same issue. They crash . Exactly Launcher.exe crash with a
unhandled page fault
--
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=27376
Summary: Cannot install AVS Video Converter
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Mac OS X 10.6
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Aisstere(a)hotmail.com
I just downloaded AVS video converter and I thought it would work. Tried to
install but filed when updating and has a crash message saying a component
crashed.
--
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=23864
Summary: Company of Heroes Online install failure
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sternzy(a)msn.com
"Component Visual C++ 2010 Runtime Libraries (x86) has failed to install with
the following error message:
"A failure occurred attempting to install Visual C++ 2010 Runtime Libraries
(x86)."
The following components were not installed:
- Company of Heroes Online Game Files
- Microsoft .NET Framework 4 Client Profile (x86 and x64)
The following components failed to install:
- Visual C++ 2010 Runtime Libraries (x86)
See the setup log file located at
'C:\users\username\Temp\VSD9744.tmp\install.log' for more information."
--
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=30662
Bug #: 30662
Summary: World of warcraft bug in wine (unknown cause)
Product: Wine
Version: 1.4
Platform: ppc32
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spacedoor66(a)gmail.com
Classification: Unclassified
Created attachment 40138
--> http://bugs.winehq.org/attachment.cgi?id=40138
Backtrace of the documented issue
Wine crashes due to an internal error while running world of warcraft thru
optimus nvidia driver
A hell of alot of more info here:
http://ubuntuforums.org/showthread.php?t=1969597&page=4
In short the game crashes in some parts of the world otherwise it runs smoothly
and my idea is that it has something to do with zoning or loading of layers of
graphics
I dont know alot about computers so I hope that this is properly posted if not
please excuse my lack of knowledge
--
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=29368
Bug #: 29368
Summary: Microsoft Flight Simulator X crashes on exit
Product: Wine
Version: 1.3.35
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
Ran into this with wine-1.3.35 in my third run.
Here's what I did:
1) copy both discs to a directory to work around bug 25558
2) run in a virtual desktop to work around bug 25139
3) apply winsock hack from bug 26411
4) Ran game, declined to activate, ran through first tutorial, flew into the
ground,
5) When presented with the refly / continue / quit dialog, chose Quit (I think)
Here's the traceback:
...
fixme:font:WineEngRemoveFontResourceEx (L"fonts\\glassga.ttf", 10, (nil)): stub
Unhandled exception: page fault on read access to 0x5bbe4642 in 32-bit code
(0x5bbe4642).
Backtrace:
=>0 0x5bbe4642 (0x0032f2b4)
1 call_hook_proc+0x115(proc=0x5bbe4642, id=0x5, code=0x4, wparam=0x200b4,
lparam=0, prev_unicode=0, next_unicode=0x1) [dlls/user32/hook.c:302]
2 call_hook+0x31e(info=0x32f3a8, code=0x4, wparam=0x200b4, lparam=0)
[dlls/user32/hook.c:382]
3 CallNextHookEx+0x19a(hhook=0x1007c, code=0x4, wparam=0x200b4, lparam=0)
[dlls/user32/hook.c:569]
4 in mfc80 (+0x30fe8) (0x0032f7dc)
5 call_hook_WtoA+0x2e(proc=0x78200dcd, id=0x5, code=0x4, wparam=0x200b4,
lparam=0) [dlls/user32/hook.c:251]
6 call_hook_proc+0xe9(proc=0x78200dcd, id=0x5, code=0x4, wparam=0x200b4,
lparam=0, prev_unicode=0x1, next_unicode=0) [dlls/user32/hook.c:301]
7 call_hook+0x31e(info=0x32f95c, code=0x4, wparam=0x200b4, lparam=0)
[dlls/user32/hook.c:382]
8 HOOK_CallHooks+0x26c(id=0x5, code=0x4, wparam=0x200b4, lparam=0,
unicode=0x1) [dlls/user32/hook.c:448]
9 DestroyWindow+0xca(hwnd=0x200b4) [dlls/user32/win.c:1645]
10 OLEClipbrd_UnInitialize+0x9a() [dlls/ole32/clipboard.c:1766]
11 OleUninitialize+0xf1() [dlls/ole32/ole2.c:252]
12 0x78247de1 in mfc80 (+0x77de0) (0x0032fe40)
--
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=35759
Bug ID: 35759
Summary: Error saying 'The program winemenubuilder has
encountered a serious problem and needs to close.We
are sorry for the inconvenience'
Product: Wine
Version: 1.4
Hardware: x86-64
OS: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mary22sat(a)gmail.com
Created attachment 47755
--> http://bugs.winehq.org/attachment.cgi?id=47755
This is the program error which I get while executing python2.7.exe
While opening python2.7.exe using Wine Windows Program Loader, I am getting an
error saying
'The program winemenubuilder has encountered a serious problem and needs to
close.We are sorry for the inconvenience'.
--
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=18784
Summary: ALSA driver not working properly with Ragnarok
client(s)
Product: Wine
Version: 1.1.22
Platform: PC
URL: http://iro.ragnarokonline.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emailofchris(a)gmail.com
When using the ALSA driver, the audio in Ragnarok Online is "crackly", not of
acceptable quality. It works fine when using OSS, but this makes it so only the
Ragnarok client has access to sound -- i.e., I've gotta quit Opera (due to
Flash object(s)) and Audacious must not be active (i.e., it can't be on Pause
or playing).
--
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=36289
Bug ID: 36289
Summary: valgrind shows an invalid read when loading gecko in
ieframe/tests/ie.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==17309== Invalid read of size 4
==17309== at 0x7018C5F3: ???
==17309== by 0x70197781: ???
==17309== by 0x70181492: ???
==17309== by 0x7BC555FE: MODULE_InitDLL (loader.c:1068)
==17309== by 0x7BC5597C: process_attach (loader.c:1157)
==17309== by 0x7BC5592C: process_attach (loader.c:1149)
==17309== by 0x7BC585E2: LdrLoadDll (loader.c:2129)
==17309== by 0x7B85A79A: load_library (module.c:933)
==17309== by 0x7B85A908: LoadLibraryExW (module.c:990)
==17309== by 0x731F1BA: load_xul (nsembed.c:484)
==17309== by 0x731FE4A: load_wine_gecko_v (nsembed.c:587)
==17309== by 0x731FEB7: load_wine_gecko (nsembed.c:605)
==17309== by 0x73207E5: load_gecko (nsembed.c:772)
==17309== by 0x7325233: create_nscontainer (nsembed.c:2047)
==17309== by 0x72A3B68: HTMLDocument_Create (htmldoc.c:4751)
==17309== by 0x730FC60: ClassFactory_CreateInstance (main.c:238)
==17309== by 0x4FFFE26: CoCreateInstance (unknwn.h:226)
==17309== by 0x4D1E316: create_mime_object (binding.c:258)
==17309== by 0x4D1E6B6: create_object (binding.c:308)
==17309== by 0x4D2124C: report_data (binding.c:1077)
==17309== Address 0x800ed414 is not stack'd, malloc'd or (recently) free'd
==17309==
--
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=24376
Summary: Final Fantasy XIV beta: low frame rate
Product: Wine
Version: 1.3.2
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Once past bug 24358 and bug 24375, the next problem is slow
frame rate; I'm seeing 7-8 fps in the first part (where
the player materializes in some sort of lobby that looks
like a bar), and 10-11 fps after you accept an assignment,
get past the cut scene, and are thrown into the game proper.
This is on an e8400 with an nvidia gt 220 (yeah, not a fast card, but
still). I'll measure framerate on same hardware in vista next.
--
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=27824
Summary: Super Street Fighter IV AE : Screen is bright and
blurry
Product: Wine
Version: 1.3.24
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: cleberdemattoscasali-wine(a)yahoo.com.br
Created an attachment (id=35589)
--> (http://bugs.winehq.org/attachment.cgi?id=35589)
Screen is too bright and blurry
Screen looks very bright and blurry.
In the console, I get a lot of:
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
Not sure it's related.
--
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=33093
Bug #: 33093
Summary: all games fails to launch
Product: Wine
Version: 1.4.1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fabiopica.stb(a)gmail.com
Classification: Unclassified
Created attachment 43761
--> http://bugs.winehq.org/attachment.cgi?id=43761
bug log from Gta San Andreas
last day all my games ar able to work, today after install fallout 3, for some
reason all games arent able to launch anymore, all they gives me a bugfile like
the one's below
--
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=6181
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #29 from Austin English <austinenglish(a)gmail.com> ---
Closing.
--
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=36818
Bug ID: 36818
Summary: Dark Souls Cannot Run
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yogaalthofa(a)gmail.com
Dark Souls Cannot run
--
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=24919
Summary: directx_Jun2010_redist.exe fails to install
Product: Wine
Version: 1.3.5
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: paloseco(a)gmail.com
Created an attachment (id=31554)
--> (http://bugs.winehq.org/attachment.cgi?id=31554)
directx_Jun2010_redist.exe fails to install
a window says:
Extracting file failed. It is most likely caused by low memory (low disk space
for swapping file) or corrupted cabinet file.
cabextract is installed.
--
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=36852
Bug ID: 36852
Summary: Southern Cross Love Song (Visual Novel) shows WINE
error Dialog (of two) when install.
Product: Wine
Version: 1.7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: hibi.sasahara(a)gmail.com
Upon WINE error Dialog (two come up!). when end of install.
But application is fine. There is not the problem with playing a game.
note:
AppDB is
https://appdb.winehq.org/objectManager.php?sClass=version&iId=30375
Free trial version to
http://mirror.tsundere.ne.jp/download/studio-ryokucha/11e3ee5b92cc4ab8eefc7…
Free trial version official mirror lists is
http://www.studio-ryokucha.com/nankoi/dl_trialversion.html
md5sum is
11e3ee5b92cc4ab8eefc77cc8f71db81
I use default locale is Japanese. "LANG=ja_JP.UTF-8"
--
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=14793
Summary: Dwarf Fortress has an issue with Wine where a resource
is required, that usually isn't.
Product: Wine
Version: 1.1.2
Platform: All
URL: http://www.aaron5367.com/Aaron5367/DF.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Aaron5367(a)gmail.com
Dwarf Fortress has a problem only in Wine (reported only for Wine so far).
Where refining Coal thinks it needs Silt/Opals/other random things. There is a
thread about it here:
http://www.bay12games.com/cgi-local/ultimatebb.cgi?ubb=get_topic&f=6&t=0025…
This isn't common, as some people have it, some don't. I do have it however,
and the uploaded Dwarf Fortress has an example of it. I've done two reinstalls
of Dwarf Fortress (unzipping the newest zip into the directory, and one where I
just copied the save).
The odd thing is that it works fine in Windows for everyone. I did make this
current save in Windows, and I haven't tried this with one JUST in Wine.
--
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=31975
Bug #: 31975
Summary: World of Warcraft "failed to run a program (agent)"
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hunt.jonr(a)gmail.com
Classification: Unclassified
Created attachment 42129
--> http://bugs.winehq.org/attachment.cgi?id=42129
The error message
World of Warcraft worked just as it should.
Until one day. Ever since then, when I try and launch World of Warcraft, a
window pops up with the message "checking for updates..", later followed by a
window with the message:
"failed to run a required program (agent). Wait one minute and try again and if
that doesn't work please restart your computer and try again."
I have tried as it suggests, but I still get the same problem every time. I was
launching World of Warcraft from the .exe in my windows directory, so I tried
downloading and installing world of warcraft into my linux directory instead.
Before it even starts installing I get the same windows popping up.
--
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=36744
Bug ID: 36744
Summary: Pizza Connection 2 crashes at some point everytime
Product: Wine
Version: 1.7.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: martin.beckert(a)online.de
Created attachment 48797
--> http://bugs.winehq.org/attachment.cgi?id=48797
log-file with two different logs
Playing Pizza Connection 2 was possible until some point, so now the game
crashes everytime at the same point. It's not possible to get over it.
I started PC2 with "wine Pizza2.exe", it's the first part in the log-file.
Next started it with "WINENOPULSE=1 wine Pizza2.exe", that's part two in the
log-file.
So, what's going on here? :) Thanks for every help!
--
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=28841
Bug #: 28841
Summary: World of Warcraft Patch 4.2.2.14545 "hangs" when
clicking "Play" to start game.
Product: Wine
Version: 1.3.30
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: abe(a)nativetrauma.com
Classification: Unclassified
Created attachment 37040
--> http://bugs.winehq.org/attachment.cgi?id=37040
My system info
Like the other i updated from Ubuntu 11.4 to 11.10 all was good then Wine
updated as well wow was working then now it doesn't with the new install of
wine 1.3.30 and Ubuntu wow loads the main launcher screen then hangs no warning
nothing after terminated the process and made sure winetricks installed IE 6
and updated the other settings launcher still hangs but even running the
wow.exe will not work even though it did fixed the issue last build. Please
help
System information report, generated by Sysinfo: 10/21/2011 8:34:56 AM
http://sourceforge.net/projects/gsysinfo
SYSTEM INFORMATION
Running Ubuntu Linux, the Ubuntu 11.10 (oneiric) release.
GNOME: 2.32.1 (Ubuntu 2011-04-14)
Kernel version: 3.0.0-12-generic (#20-Ubuntu SMP Fri Oct 7 14:56:25 UTC
2011)
GCC: 4.6.1 (x86_64-linux-gnu)
Xorg: 1.10.4 (19 October 2011 05:21:26AM) (19 October 2011 05:21:26AM)
Hostname: MonkeyBone21
Uptime: 1 days 16 h 5 min
CPU INFORMATION
AuthenticAMD, AMD Athlon(tm) II X2 255 Processor
Number of CPUs: 2
CPU clock currently at 1900.000 MHz with 1024 KB cache
Numbering: family(16) model(6) stepping(3)
Bogomips: 6200.90
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat
pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm
3dnowext 3dnow constant_tsc rep_good nopl nonstop_tsc extd_apicid pni monitor
cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse
3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save
MEMORY INFORMATION
Total memory: 3017 MB
Total swap: 5880 MB
STORAGE INFORMATION
SCSI device - scsi0
Vendor: ATA
Model: WDC WD15EARS-00Z
SCSI device - scsi1
Vendor: ATA
Model: Maxtor 7L300S0
SCSI device - scsi5
Vendor: SONY
Model: CDRW/DVD CRX330E
SCSI device - scsi1
Vendor: RIM
Model: BlackBerry SD
HARDWARE INFORMATION
MOTHERBOARD
Host bridge
Advanced Micro Devices [AMD] Family 10h Processor Link Control
Subsystem: Advanced Micro Devices [AMD] RS780 Host Bridge
PCI bridge(s)
Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (ext gfx port 0)
(prog-if 00 [Normal decode])
Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3)
(prog-if 00 [Normal decode])
ATI Technologies Inc SBx00 PCI to PCI Bridge (prog-if 01 [Subtractive
decode])
Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (ext gfx port 0)
(prog-if 00 [Normal decode])
Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3)
(prog-if 00 [Normal decode])
ATI Technologies Inc SBx00 PCI to PCI Bridge (prog-if 01 [Subtractive
decode])
USB controller(s)
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10
[OHCI])
ATI Technologies Inc SB7x0 USB OHCI1 Controller (prog-if 10 [OHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20
[EHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10
[OHCI])
ATI Technologies Inc SB7x0 USB OHCI1 Controller (prog-if 10 [OHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20
[EHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI2 Controller (prog-if 10
[OHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10
[OHCI])
ATI Technologies Inc SB7x0 USB OHCI1 Controller (prog-if 10 [OHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20
[EHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI0 Controller (prog-if 10
[OHCI])
ATI Technologies Inc SB7x0 USB OHCI1 Controller (prog-if 10 [OHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB EHCI Controller (prog-if 20
[EHCI])
ATI Technologies Inc SB7x0/SB8x0/SB9x0 USB OHCI2 Controller (prog-if 10
[OHCI])
ISA bridge
ATI Technologies Inc SB7x0/SB8x0/SB9x0 LPC host controller
Subsystem: Biostar Microtech Int'l Corp Device 3700
IDE interface
ATI Technologies Inc SB7x0/SB8x0/SB9x0 IDE Controller (prog-if 8a
[Master SecP PriP])
Subsystem: Biostar Microtech Int'l Corp Device 3700
GRAPHIC CARD
VGA controller
nVidia Corporation G73 [GeForce 7300 GT] (rev a1) (prog-if 00 [VGA
controller])
Subsystem: Device 196e:0393
SOUND CARD
Multimedia controller
ATI Technologies Inc SBx00 Azalia (Intel HDA)
Subsystem: Biostar Microtech Int'l Corp Device 821f
NETWORK
Network controller
Ralink corp. RT2561/RT61 802.11g PCI
Subsystem: Ralink corp. EW-7108PCg
Ethernet controller
Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast
Ethernet controller (rev 02)
Subsystem: Biostar Microtech Int'l Corp Device 2308
NVIDIA GRAPHIC CARD INFORMATION
Model name: GeForce 7300 GT
Card Type: PCI-E 16x
Video RAM: 256 MB
GPU Frequency: 350 MHz
Driver version: NVIDIA UNIX x86_64 Kernel Module 173.14.30 Sat Apr 16
21:49:29 PDT 2011
--
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=36846
Bug ID: 36846
Summary: DSS Player crashes on startup
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Created attachment 48935
--> http://bugs.winehq.org/attachment.cgi?id=48935
DSS Player console output wine 1.7.20
Dear wine-Team,
I have come across an issue with an application called "DSS Player". I got the
application from the following site:
http://www.grundig-gbs.com/en/support-downloads/software/dss-player/
I have attached a backtrace. Please let me know should you require further
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.
http://bugs.winehq.org/show_bug.cgi?id=21011
Summary: World Of Warcraft crashes after start with unhandled
exception
Product: Wine
Version: unspecified
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: oleg.sev(a)gmail.com
Ubuntu 9.10 amd64 fresh install
NVIDIA drivers 195.22 (beta)
wine 1.1.34 installed from ppa.
World Of Warcraft crashes after start with message "unhandled exception"
(with/without -opengl flag in command line). After crash Wow.exe showing in
processes with 100% CPU using.
Installing vsredist and directX9 not help.
In Windows XP WoW runs correctly without any errors.
On Ubuntu 9.04 with same NVIDIA driver works normal.
--
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.