http://bugs.winehq.org/show_bug.cgi?id=12477
Summary: NBC Direct installer requires installation of Windows
Installer 3.1 redist
Product: Wine
Version: CVS/GIT
Platform: PC
URL: http://www.nbc.com/Video/NBCDirectInstaller.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nodisgod(a)yahoo.com
Created an attachment (id=12038)
--> (http://bugs.winehq.org/attachment.cgi?id=12038)
Microsoft Dynamics GP installer comparision screenshot
Using current Git, when the NBC Direct installer is run, it attempts to satisfy
certain prerequisites for NBC Direct, one of which is the Windows Installer
3.1. Due to bugs 5351 and 10698, the Windows Installer 3.1 redist cannot be
installed. The NBC Direct installer's requirement of installing Windows
Installer 3.1 seemingly shouldn't happen, since when unrelated application
Microsoft Dynamics GP demo (from http://www.microsoft.com/dynamics/gp) is run,
it detects Microsoft Windows Installer 3.1 prerequisite as already installed.
No relevant output is noted.
--
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=16443
Summary: Regression in ntdll breaks IE6 setup
Product: Wine
Version: CVS/GIT
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spa(a)starfinanz.de
CC: julliard(a)winehq.org
Following commit breaks installation of Internet Explorer 6 setup after
simulated reboot.
> Module: wine
> Branch: master
> Commit: 2e25b859eaa0d9b479f8a51327ae6bdd0e327f87
> URL: http://source.winehq.org/git/wine.git/?a=commit;h=2e25b859eaa0d9b479f8a5132…
>
> Author: Alexandre Julliard <julliard(a)winehq.org>
> Date: Mon Nov 10 13:20:45 2008 +0100
>
> ntdll: Don't call the dll entry point for native modules.
Error is:
err:ntdll:RtlpWaitForCriticalSection section 0x6d384158 "?" wait timed out in
thread 0044, blocked by 0000, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x6d384158 "?" wait timed out in
thread 0044, blocked by 0000, retrying (60 sec)
I know that IE is not your favorite app. However, many apps still need native
IE. Any chance to restore old behaviour?
This commit is also the cause for Bug 16425.
--
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=14473
Summary: msn 8.5 final does not show the initial screen
Product: Wine
Version: 1.1.0
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spreetec(a)gmx.net
messenger starts but the window stays grey/empty
after adding riched20.dll i can see the blincking curser, but no
fonts/colors/graphics...
--
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=14252
Summary: Windows Live Messenger 8.1 just show a blue box
Product: Wine
Version: 1.1.0
Platform: PC
URL: http://www.microsoft.com/downloads/details.aspx?familyid
=d78f2ff1-79ea-4066-8ba0-ddbed94864fc&displaylang=en
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: gdiplus
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jaimerave(a)gmail.com
After installing Messenger 8.1, when you open the main window you only see a
blue box. In the console you can see these three lines related to gdiplus.
fixme:gdiplus:GdipImageGetFrameCount not implemented
fixme:gdiplus:GdipImageGetFrameDimensionsList not implemented
fixme:gdiplus:GdipImageSelectActiveFrame not implemented
After install native gdiplus using winetricks the window will appear correctly.
--
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=27920
Summary: ComboBoxEx doesn't process WM_ENABLE properly
Product: Wine
Version: 1.3.25
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lightning_uk(a)imgburn.com
Created an attachment (id=35721)
--> (http://bugs.winehq.org/attachment.cgi?id=35721)
Test / Demo App
Unlike ComboBox, ComboBoxEx doesn't appear to process WM_ENABLE properly.
Its 'look' never changes from the initial one - be that enabled or disabled.
So if it's disabled when created, it'll stay looking disabled even after you've
enabled it. If it's enabled when created, it'll stay looking enabled even after
you've disabled it.
If disabled when created, you can't interact with it (get it to drop down etc)
even when you've supposedly enabled it.
The above can be fixed by handling WM_ENABLE in COMBOEX_WindowProc.
Something like the following does the trick (idea taken from combo.c)...
case WM_ENABLE:
if( infoPtr->hwndEdit )
EnableWindow( infoPtr->hwndEdit, (BOOL)wParam );
EnableWindow( infoPtr->hwndCombo, (BOOL)wParam );
/* Force the control to repaint when the enabled state changes. */
InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
return TRUE;
Once that has been added, you see another problem with the control...
When disabled, it doesn't draw the contents of the combobox - compared to
Windows (Vista/7 anyway), that's wrong.
Windows greys the control (drop down arrow etc) out but the image+text remain
visible and 'normal' colour.
That can be fixed by commenting out the following line in COMBOEX_DrawItem
if (!IsWindowEnabled(infoPtr->hwndCombo)) return 0;
I've added a demo app attachment that shows the problem with ComboBoxEx. You
should notice that if you press the 'Enable' button before the 'Show' button,
the ComboBoxEx control looks and behaves differently to if you press 'Show' and
then 'Enable'.
There's a traditional ComboBox on the form too just for comparison.
--
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=15650
Summary: Wine crashes if it is built with -fomit-frame-pointer
Product: Wine
Version: CVS/GIT
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amorozov(a)etersoft.ru
Created an attachment (id=16709)
--> (http://bugs.winehq.org/attachment.cgi?id=16709)
WINEDEBUG=+winedevice ./wine winecfg
If wine is built with
CFLAGS=-fomit-frame-pointer ./configure
then it crashes.
$ gcc --version
i586-alt-linux-gcc (GCC) 4.1.2 20070626 (ALT Linux, build 4.1.2-alt3)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--
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=14384
Summary: Can not install MSDN - installer crashes
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thesource(a)mail.ru
Created an attachment (id=14685)
--> (http://bugs.winehq.org/attachment.cgi?id=14685)
MSDN setup log
I can't install MSDN for Visual Studio 2005. Installer crashes after I press
Next on the screen where you choose Full or Custom installation. Log 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=14639
Summary: ngen.exe from .NET 2.0 show exception E_INVALIDARG when
trying to compile an assembly
Product: Wine
Version: 1.1.2
Platform: Other
OS/Version: other
Status: NEW
Keywords: dotnet
Severity: normal
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mikolaj.zalewski(a)gmail.com
Created an attachment (id=15047)
--> (http://bugs.winehq.org/attachment.cgi?id=15047)
oleaut32 patch
To reproduce:
wine ngen asiduvaoisduvbaios
The expected behaviour is HRESULT 0x80070002 (file not found), while we get
E_INVALIDARG. The E_INVALIDARD is because of some garbage provided to
SetPriorityClass.
There is a bug in either oleaut32's serialize_param or deserialize_param -
serialize_param treats VT_USERDEFINED/TKIND_RECORD as inline data, while
deserialize_param makes of it a pointer to an allocated buffer. As the VT_PTR
is absent, I would except the first is correct (also it seems this is what ngen
is expecting). The attached patch makes the class sent to SetPriorityClass
constant - always 0xffffffff.
This is still incorrect. The native SetPriotityClass ignores incorrect flags,
so maybe we should just return TRUE, but it could be another bug e.g. in
oleaut32.
--
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=11494
Summary: The Install does not work, acts like it finises though
Product: Wine
Version: 0.9.54.
Platform: PC-x86-64
URL: http://www.speedproject.de/enu/speedcommander/index.html
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tn(a)chambers.no-ip.info
Created an attachment (id=10648)
--> (http://bugs.winehq.org/attachment.cgi?id=10648)
First screen
I don't know if it's because of the installer it uses, but take a look through
the pictures and you can see that it doesn't install into the correct
directory, and at the end of the install you only get an uninstall.exe in the
Default folder. By the way, the Default install path for this program is
Program files/SpeedProject/SpeedCommander 12/ instead of this wierd Program
Files/Default. I have tried manually changing the install directory to the
correct one but it never copies the correct file into the folder. I have
attached all pics from the install process for reference. Not sure if this
install is tied to the bug from 11490. Thank you.
--
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=9870
Summary: WINE not reading Multiple Sound Devices correctly,
ignoring ALSA setup
Product: Wine
Version: 0.9.41.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jim(a)1-6regulars.homeip.net
Ubuntu 7.04 Gnome setup to use ALSA sound with CA0106 (SB Audigy PCI card).
Motherboard has VIA Sound on board, disabled in BIOS. ALSA default set to use
CA0106 and is working well in Gnome. WINE Audio Setup is configured to use
ALSA. Wave Out Devices list VIA 8237, but not CA0106. Running WINE Apps have
sound coming out of Disabled VIA device and not the CA0106. ALSA is the only
enabled sound option.
OSS Option lists C-Media Electronics CMI9761A+, which I believe is normally the
driver for many on board audio chip sets like the VIA set. With OSS Selected
as the only sound option, apps in WINE also have sound coming out of the
disabled VIA device and not the CA0106 device.
--
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=15976
Summary: MS Exchange 2007 fails to install.
Product: Wine
Version: 1.1.8
Platform: Other
URL: http://technet.microsoft.com/en-
us/exchange/bb330851.aspx
OS/Version: other
Status: NEW
Keywords: download, Installer
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: leslie_alistair(a)hotmail.com
Created an attachment (id=17166)
--> (http://bugs.winehq.org/attachment.cgi?id=17166)
WINEDEBUG=all
The setup fails to install and gives no error of failure.
Attached is a log of WINEDEBUG=all
I have tried to
set Wine to win2003 or win2008
install dotnet 1.1 and 2.0 and overriding mscoree.dll
Still with no luck.
--
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=13737
Summary: Word 2003 crashes on opening specific file
Product: Wine
Version: 1.0-rc3
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sander(a)vermin.nl
Created an attachment (id=13768)
--> (http://bugs.winehq.org/attachment.cgi?id=13768)
The file that crashes word
With loads off versions before and the last one, word 2003 crashes on opening
the file in the attachment.
I have more of these files containing the same template, the all crash.
On multiple systems it has the same result. (works in windows word)
--
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=12902
Summary: IHP Kitchen: Unhandled page fault on read access when
starting
Product: Wine
Version: 0.9.60
Platform: PC
URL: http://www.ikea.com/ms/en_CA/rooms_ideas/kitchen/IHP_Kit
chen.EXE
OS/Version: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
Blocks: 4935
Created an attachment (id=12606)
--> (http://bugs.winehq.org/attachment.cgi?id=12606)
+relay,+seh,+tid log in git, bzip2 -9'ed
IKEA Kitchen Planner crashes on startup. This is a regression, though not sure
when it started...I'll try to run a regression test. +relay,+seh,+tid 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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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=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.