http://bugs.winehq.com/show_bug.cgi?id=1718
Summary: Bug in enhmetafile.c
Product: Wine
Version: unspecified
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rspilon(a)rogers.com
There is an error in enhmetafile.c - the code:
case EMR_SCALEWINDOWEXTEX:
{
PEMRSCALEWINDOWEXTEX lpScaleWindowExtEx = (PEMRSCALEWINDOWEXTEX)mr;
if ((info->mode != MM_ISOTROPIC) && (info->mode != MM_ANISOTROPIC))
break;
if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->yDenom)
break;
Notice - the line just before the break above - it should be:
!lpScaleWindowExtEx->yNum ( and not xNum )
Rene Pilon
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1717
Summary: Bug in enhmetafile.c
Product: Wine
Version: unspecified
Platform: All
OS/Version: other
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rspilon(a)rogers.com
There is an error in enhmetafile.c - the code:
case EMR_SCALEVIEWPORTEXTEX:
{
PEMRSCALEVIEWPORTEXTEX lpScaleViewportExtEx = (PEMRSCALEVIEWPORTEXTEX)
mr;
if ((info->mode != MM_ISOTROPIC) && (info->mode != MM_ANISOTROPIC))
break;
if (!lpScaleViewportExtEx->xNum || !lpScaleViewportExtEx->xDenom ||
!lpScaleViewportExtEx->xNum || !lpScaleViewportExtEx->yDenom)
break;
Notice - the line just before the break above - it should be:
!lpScaleViewportExtEx->yNum ( and not xNum )
Rene Pilon
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1716
jlavi(a)iki.fi changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From jlavi(a)iki.fi 2003-16-09 16:23 -------
*** This bug has been marked as a duplicate of 1715 ***
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1715
------- Additional Comments From jlavi(a)iki.fi 2003-16-09 16:23 -------
*** Bug 1716 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1681
James(a)superbug.demon.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From James(a)superbug.demon.co.uk 2003-16-09 10:16 -------
Problem seems to be fixed in
Wine 20030911
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1716
Summary: Regression: dlls/comctl32/toolbar.c, X11DRV_CreateBitmap
fails
Product: Wine
Version: 20030911
Platform: Other
URL: http://www.iki.fi/~jlavi/Wine/wine-20030307143820.gif
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jlavi(a)iki.fi
Trace32 is a hardware debugging system which I use debug Arm
based embedded devices.
The patch committed on March 07 2003 at 17:02:46 CST by Alexandre broke the
buttons in the main window of Trace32:
http://www.iki.fi/~jlavi/Wine/wine-20030307170246.gif
Also the Wine version 20030911 has the same problem.
The patch changed only the file dlls/comctl32/toolbar.c.
The buttons are corrupted only in the main window of Trace32, not
in its subwindows. With the same subwindows open as in the screenshot,
Wine gives the following error message 108 times:
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
Here is Wine 20030307 17:02:46 output run through uniq:
err:font:ReadFontDir Can't open directory "/usr/share/wine-c/windows/Fonts"
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (Swedish keyboard layout) for scancode mapping.
Please define your layout in windows/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
Just before the patch was committed on the same day the buttons worked
at 14:38:20:
http://www.iki.fi/~jlavi/Wine/wine-20030307143820.gif
With this Wine version the output still contains X11DRV_CreateBitmap error
messages but there is only 27 of them, exactly 4 times less than when buttons
are corrupted.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1715
Summary: Regression: dlls/comctl32/toolbar.c, X11DRV_CreateBitmap
fails
Product: Wine
Version: 20030911
Platform: Other
URL: http://www.iki.fi/~jlavi/Wine/wine-20030307143820.gif
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jlavi(a)iki.fi
Trace32 is a hardware debugging system which I use debug Arm
based embedded devices.
The patch committed on March 07 2003 at 17:02:46 CST by Alexandre broke the
buttons in the main window of Trace32:
http://www.iki.fi/~jlavi/Wine/wine-20030307170246.gif
Also the Wine version 20030911 has the same problem.
The patch changed only the file dlls/comctl32/toolbar.c.
The buttons are corrupted only in the main window of Trace32, not
in its subwindows. With the same subwindows open as in the screenshot,
Wine gives the following error message 108 times:
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
Here is Wine 20030307 17:02:46 output run through uniq:
err:font:ReadFontDir Can't open directory "/usr/share/wine-c/windows/Fonts"
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (Swedish keyboard layout) for scancode mapping.
Please define your layout in windows/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
fixme:accel:CreateAcceleratorTableA should check that the accelerator
descriptions are valid, return NULL and SetLastError() if not.
err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=4
Just before the patch was committed on the same day the buttons worked
at 14:38:20:
http://www.iki.fi/~jlavi/Wine/wine-20030307143820.gif
With this Wine version the output still contains X11DRV_CreateBitmap error
messages but there is only 27 of them, exactly 4 times less than when buttons
are corrupted.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1714
Summary: GetAhead 1.0 causes Wine to segfault
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: gary(a)evalunet.co.za
When running STUDENT.EXE from EvaluNet GetAhead 1.0, wine just segfaults.
STUDENT.EXE was created using Quest.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1512
------- Additional Comments From dtaylor(a)flowcom.com.au 2003-16-09 01:31 -------
That doesn't make any difference for me. I get the exact same result whether I
have flex or flex-old installed.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1713
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Component|wine-dos |wine-ole
Ever Confirmed| |1
------- Additional Comments From marcus(a)jet.franken.de 2003-16-09 01:18 -------
can confirm the problem. step 1 workaround: run with -dll riched32=n, this will at least open the main dialog window. after this it fails with: fixme:ole:MkParseDisplayName (0x405010c0, L"Scripting.FileSystemObject", 0x407a0638, (nil)): stub. while pulling in activex scripting support I guess.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1690
------- Additional Comments From david.ronis(a)mcgill.ca 2003-15-09 17:40 -------
Today's CVS has eliminated one of these errors. Now only the
InterlockedCompareExchange error happens.
I haven't updated in a while, so I'm not sure when this was fixed.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1124
bugs_wine(a)kirun.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bugs_wine(a)kirun.co.uk
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1713
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2003-15-09 09:05 -------
Error 0x80010108 is winerror.h:#define RPC_E_DISCONNECTED
_HRESULT_TYPEDEF_(0x80010108L)
Try reconfiguring some native/built-in OLE/RPC DLLs.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1512
------- Additional Comments From rtough(a)hb.lu.se 2003-15-09 08:04 -------
I had the same problem in debian unstable...
I solved itsealf after an install of flex-old instead of flex...
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1713
Summary: Automation Error
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P3
Component: wine-dos
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: bvallu1(a)uic.edu
I installed a program called FACETS (you can download the trial version from
winsteps.com) and when I try to run thr program it gives the following error.
Run-time Error 2147417848 (80010108)
Automation Error
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1512
------- Additional Comments From dtaylor(a)flowcom.com.au 2003-15-09 00:24 -------
I've tried downgrading everything. I got rid of all the drm-trunk packages,
reinstalled XFree86 4.2, reinstalled Wine 20030813. I even recompiled my kernel
and modules using fresh 2.4.22 source. Nothing. No luck. This combination
used to run before I upgraded it all to get DRM working.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1512
------- Additional Comments From dtaylor(a)flowcom.com.au 2003-14-09 23:31 -------
Regarding comment #4, I had just upgraded my X to 4.3 using some Debian packages
I found at a site dedicated to getting DRI working with i810. Unfortunately,
I've lost my bookmarks and history and I can't find the site again.
I did however come across:
http://lists.debian.org/debian-x/2003/debian-x-200309/msg00117.html
which suggests xlibmesa may be to blame.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1512
------- Additional Comments From dtaylor(a)flowcom.com.au 2003-14-09 21:17 -------
Not a jot of difference for me .. no matter how many times I uninstall, update,
recompile, and then reinstall. I get an instant segmentation fault every time.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1512
------- Additional Comments From steven(a)pyro.eu.org 2003-14-09 16:34 -------
Bug appears to be fixed...?
Re-compiled using the 20030911 release (as opposed to the CVS version
from the same day) and WINE appears to be working again.
Could perhaps be due to us having corrupt CVS trees... I was having
'it is in the way' errors from cvs.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1706
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From mike(a)theoretic.com 2003-13-09 15:32 -------
I think this must be a local issue, it works fine here. Are you sure the system
clock is set correctly? Also, if you're building over NFS, that can screw things up.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1709
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-13-09 15:30 -------
closing...
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1709
------- Additional Comments From mike(a)theoretic.com 2003-13-09 15:30 -------
Ditto. Please provide a patch if you want this message to go away.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1708
mike(a)theoretic.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)theoretic.com 2003-13-09 15:29 -------
Please don't report random output like this unless it's in the context of
another bug. FIXMEs are there because we know about the problem and need
somebody to fix them.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1712
------- Additional Comments From jurgen(a)person.be 2003-13-09 12:53 -------
Well again me. I verified the mails this bugtracker sents to me.
Guess what ? It filters OUT the special keys i posted up here,
however they seem to be right visible on this site. Anyway,
when You open the keyboard.c with the good old vi, the error is
still the case i defined.
So i suggest additionaly to convert ALL keyboard codes in
keyboard.c to HEX. So the key "²³" I mention before should be
"\xb2\xb3" instead. The euro should be "eE\xa4" but as said
all codes should be in HEX to avoid errors like this.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1712
------- Additional Comments From jurgen(a)person.be 2003-13-09 12:35 -------
Oeps I forgot to mention, the euro key for all European countries is : "eE€"
It has to be defined either in some releases of wine.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.