https://bugs.winehq.org/show_bug.cgi?id=54573
Bug ID: 54573
Summary: win64 bug: err:module:import_dll Library iconv.dll
Product: Wine-staging
Version: 8.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: romulasry(a)protonmail.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 74116
--> https://bugs.winehq.org/attachment.cgi?id=74116
wine pant.net logfile
When I run:
wine paint.net.5.0.2.install.anycpu.web.exe
See attached log.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=48877
Bug ID: 48877
Summary: [regression] Melodyne crashes when using the Pitch
tool
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: marcan(a)marcansoft.com
Distribution: ---
Created attachment 66814
--> https://bugs.winehq.org/attachment.cgi?id=66814
Partial fix
Tested on git master. Regression was introduced by commit 9bc6f004ce, but that
commit is not the root cause.
The assertion `assert( obj->numRects <= nb_points / 2 );` would fail, but the
code actually crashes earlier due to memory corruption as obj->rects overflows.
In the normal case of nb_points == 0, ET->ymin..ymax are
2147483647..-2147483648, which makes the code iterate over zero scanlines as
ymax < ymin. However, in the crash case, ymin..ymax are -2147483648..378 (note
the negative ymin), so it tries to iterate over two billion scanlines and adds
rects to the obj until it crashes.
This happens because create_polypolygon_region gets passed an insane polygon
with a -2147483648,-2147483648 vertex.
The actual bug is in GdipWidenPath, which produces NaN float points, which get
converted to that insane int after rounding.
And this happens because Melodyne is passing in a degenerate path with the
first two points at the same position (added debugging trace to dump the path
points):
format: "index: [type] X, Y"
00df:err:gdiplus:GdipWidenPath 0: [0] 4.000000, 4.000946
00df:err:gdiplus:GdipWidenPath 1: [1] 4.000000, 4.000946
00df:err:gdiplus:GdipWidenPath 2: [3] 4.000000, 4.000946
00df:err:gdiplus:GdipWidenPath 3: [3] 4.000000, 4.000000
00df:err:gdiplus:GdipWidenPath 4: [3] 4.000000, 4.000000
The code goes GdipWidenPath -> widen_open_figure -> widen_cap, where the
segment length is computed as 0 and it ends up dividing by zero.
I'm not sure what Windows does here. add_bevel_point handles the special case
by just placing a point coincident with the path, ignoring the pen width.
The attached patch generalizes that to widen_cap as a whole. It fixes the
Melodyne crash for me, but I'm not sure if it's the correct behavior, and
degenerate segments will probably cause problems in other code paths (e.g.
add_anchor seems to have the same bug). Maybe a better solution would be to
just remove coincident points from the path before widening (being careful of
cases where the path ends up with one point after this). Someone with more
experience with the GDI code should look at this, and perhaps test it on
Windows to see how it behaves.
--
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=51656
Bug ID: 51656
Summary: Gaea Installer crashes in riched when pressing enter
Product: Wine
Version: 6.15
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: richedit
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
The installer of Gaea (linked) will crash when you click into the EULA editor
and press enter.
--
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=52447
Bug ID: 52447
Summary: Regression: .NET framework 2 installer hangs
Product: Wine
Version: 7.0
Hardware: x86-64
OS: FreeBSD
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: damjan.jov(a)gmail.com
Shortly after Wine 6.11:
winetricks dotnet20
hangs while installing System.Windows.Forms. A git bisect gives:
fed7e7a78b4bea183d0cbb107953e275f17baa4f is the first bad commit
commit fed7e7a78b4bea183d0cbb107953e275f17baa4f
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Jun 21 15:57:26 2021 +0200
ntdll: Simulate a syscall return when starting a thread.
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
dlls/ntdll/unix/server.c | 2 +-
dlls/ntdll/unix/signal_arm.c | 65 ++++++++++---------------
dlls/ntdll/unix/signal_arm64.c | 70 +++++++++++----------------
dlls/ntdll/unix/signal_i386.c | 102 ++++++++++++++++++----------------------
dlls/ntdll/unix/signal_x86_64.c | 91 +++++++++++++++--------------------
dlls/ntdll/unix/thread.c | 2 +-
dlls/ntdll/unix/unix_private.h | 2 +-
7 files changed, 138 insertions(+), 196 deletions(-)
--
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=56787
Bug ID: 56787
Summary: Comctl32 Edit - Handles does not work wirth large
content as limited to 16bits
Product: Wine
Version: 9.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
Assignee: wine-bugs(a)winehq.org
Reporter: kyle.kcsoftwares(a)gmail.com
Distribution: ---
Test case : using a notepad, open a large (eg : 10 MB) file.
Vertical handle is unable to reach the bottom.
Observed in Ubuntu with Wine 9.10 but this has been reported in ReactOS too (
https://jira.reactos.org/browse/CORE-19305 ). Cause seems to be as following,
quoting comment from the ticket :
"The messages that indicate scroll bar position, WM_HSCROLL and WM_VSCROLL,
provide only 16 bits of position data. The GetScrollInfo function enables
applications to use 32-bit scroll positions."
Patch available at https://jira.reactos.org/browse/CORE-19305
--
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=51230
Bug ID: 51230
Summary: winecfg: Graphics tab - Per application settings don't
work
Product: Wine
Version: 6.10
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jkfloris(a)dds.nl
Distribution: ---
"Wine can mimic different Windows versions for each application. This tab is
linked to the Libraries and Graphics tabs to allow you to change system-wide
or per-application settings in those tabs as well."
>From this I understand that it should also be possible to also set the DPI or a
virtual desktop per application. Unfortunately, this does not work.
For example:
winecfg
Applications tab -> Add application -> "notepad.exe"
(select notepad.exe)
Graphics tab -> Select "Emulate a virtual desktop"
(click "Apply" and "OK")
wine notepad.exe
Now I expect notepad to run in a virtual desktop.
--
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=29267
Bug #: 29267
Summary: rtf text from wine's richedit shows up with a black
background in LibreOffice Writer
Product: Wine
Version: 1.3.34
Platform: x86
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: madewokherd(a)gmail.com
Classification: Unclassified
To reproduce:
1. Open Wine's wordpad and LibreOffice Writer.
2. Type some text in wordpad.
3. Copy text to the clipboard.
4. Paste into LibreOffice Writer.
Or:
1. Open Wine's wordpad and LibreOffice Writer.
2. Type some text in wordpad.
3. Save from wordpad as a .rtf file.
4. Open the rtf file in LibreOffice Writer.
In both cases, the text shows up with a black background in Writer. This does
not happen with native riched20. When opening the rtf file with Word 2007, I do
not see the black background, so this is somehow related to the interaction
between Wine's richedit and LibreOffice, and I can't be sure which is at 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=20350
Summary: Lightsmark 2008 - benchmark label looks wrong
Product: Wine
Version: 1.1.31
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zilforever(a)gmail.com
Created an attachment (id=24093)
--> (http://bugs.winehq.org/attachment.cgi?id=24093)
wine
GUI looks different (element that display score). First it appear: wrong
background (white not gray) and it looks like not editable input. In Windows XP
SP 3 its not visble.
After benchmark wrong size and color of font.
I checked the source and it use richedit20 but im not good at it so maybe my
mistake.
Ubuntu 9.04
Intel(R) Pentium(R) Dual CPU E2220 @ 2.40GHz
CPU flags: 2400MHz MMX SSE SSE2 SSE3 SSSE3 HTT
Linux 32bit GCC 4.3.3 Release May 26 2009
Linux 2.6.28-15-generic i686
GeForce 9600 GT PCI Express 180.44 512Mb
--
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=26302
Summary: outliner Keynote NF has a several problems
Product: Wine
Version: 1.3.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: richedit
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wit9(a)yandex.ru
Created an attachment (id=33527)
--> (http://bugs.winehq.org/attachment.cgi?id=33527)
listing of "fixmes"
There is a popular outliner Keynote NF (Mozilla Public License 1.1)
(http://code.google.com/p/keynote-nf/downloads/list). It's written in Delphi
with using of some additional components, so author has no plans to port it to
Linux.
Using the Keynote NF with the Wine causes several problems, including
1. error when pasting from the clipboard
2. using lists
and other
In the terminal appear a lot of "fixme" (see attachment).
--
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.