https://bugs.winehq.org/show_bug.cgi?id=45105
Bug ID: 45105
Summary: heap-buffer overflow in gdi32
Product: Wine
Version: 3.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: robert.gawlik(a)rub.de
Distribution: ---
Created attachment 61284
--> https://bugs.winehq.org/attachment.cgi?id=61284
affected source code
Original submitted report can be found here:
https://bugs.launchpad.net/ubuntu/+source/wine/+bug/1764719
The attachment also contains more details.
If more info is needed, please let me know!
--
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=55841
Bug ID: 55841
Summary: Lotus Approach: print "Properties" button ignored
Product: Wine-staging
Version: 8.18
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ToddAndMargo(a)zoho.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
Created attachment 75339
--> https://bugs.winehq.org/attachment.cgi?id=75339
WINEDEBUG=+winspool wine approach.exe > Wine.Print.Properties.WinspoolLog.txt
2>&1
Hi All,
# rpm -qa wine Note: this is Wine Staging
wine-8.18-1.fc38.i686
wine-8.18-1.fc38.x86_64
Lotus Approach N99.8.0208.0800 (Smart Suite)
This is impacting my ability to send out invoices as I can not configure my
envelope printing.
Wine blacks Lotus Approach’s ability to open any printer selected print
configuration dialog. This blocks me from being able to set the printer to
“Landscape” and “Manual Tray”.
This is only specific to Approach as it works fine in Lotus Word Pro and all my
other Wine Windows programs.
To reproduce:
→ start Lotus approach
→ click tab at the top “Create a New File …”
→ select “Blank Database” and “Okay”
→ in the “New” dialog that pops up, enter anything for the file name
(eraseme, etc.)
→in the “Create New database” dialog, enter anything in the “Field
Name” (“abc”) and “Okay
→ now go to “File”, “Print”
→ have fun clicking on the “Properties” button
Please fix as soon as possible.
Many thanks,
-T
--
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=48521
Bug ID: 48521
Summary: StaxRip throes errors: Win32Exception (2.0.6.0)
Invalid function System.ComponentModel.Win32Exception
(0x80004005): Invalid function
Product: Wine
Version: 5.0
Hardware: x86
URL: https://github.com/staxrip/staxrip/releases
OS: Linux
Status: NEW
Keywords: dotnet, download, source
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: xerox.xerox2000x(a)gmail.com
Distribution: Debian
Steps to reproduce:
Use Staging (workaround https://bugs.winehq.org/show_bug.cgi?id=45868) and do
- winetricks -q dotnet40 dotnet48
- Invoke like ''wine start /unix /home/louis/StaxRip.exe'' otherwise you run
into
https://bugs.winehq.org/show_bug.cgi?id=48503
Try open an avi, it`ll tell you to install AviSynth, let it complete, then try
convert it; In the end an errormessage pops up:
Win32Exception (2.0.6.0)
Invalid function
System.ComponentModel.Win32Exception (0x80004005): Invalid function
at StaxRip.PowerRequest.SuppressStandby() in
D:\Projekte\VB\staxrip\General\General.vb:line 1532
at StaxRip.GlobalClass.ProcessJobs() in
D:\Projekte\VB\staxrip\General\GlobalClass.vb:line 36
The source is available from github:
Public Class PowerRequest
Private Shared CurrentPowerRequest As IntPtr
Shared Sub SuppressStandby()
If CurrentPowerRequest <> IntPtr.Zero Then
PowerClearRequest(CurrentPowerRequest,
PowerRequestType.PowerRequestSystemRequired)
CurrentPowerRequest = IntPtr.Zero
End If
Dim pContext As POWER_REQUEST_CONTEXT
pContext.Flags = &H1 'POWER_REQUEST_CONTEXT_SIMPLE_STRING
pContext.Version = 0 'POWER_REQUEST_CONTEXT_VERSION
pContext.SimpleReasonString = "Standby suppressed by StaxRip" 'shown
when the command "powercfg -requests" is executed
CurrentPowerRequest = PowerCreateRequest(pContext)
If CurrentPowerRequest = IntPtr.Zero Then
Dim err = Marshal.GetLastWin32Error()
If err <> 0 Then Throw New Win32Exception(err)
End If
Dim success = PowerSetRequest(CurrentPowerRequest,
PowerRequestType.PowerRequestSystemRequired)
If Not success Then
CurrentPowerRequest = IntPtr.Zero
Dim err = Marshal.GetLastWin32Error()
If err <> 0 Then Throw New Win32Exception(err)
End If
End Sub
Shared Sub EnableStandby()
If CurrentPowerRequest <> IntPtr.Zero Then
Dim success = PowerClearRequest(CurrentPowerRequest,
PowerRequestType.PowerRequestSystemRequired)
If Not success Then
CurrentPowerRequest = IntPtr.Zero
Dim err = Marshal.GetLastWin32Error()
If err <> 0 Then Throw New Win32Exception(err)
Else
CurrentPowerRequest = IntPtr.Zero
End If
End If
End Sub
Enum PowerRequestType
PowerRequestDisplayRequired
PowerRequestSystemRequired
PowerRequestAwayModeRequired
PowerRequestExecutionRequired
End Enum
<DllImport("kernel32.dll", SetLastError:=True)>
Shared Function PowerCreateRequest(ByRef Context As POWER_REQUEST_CONTEXT)
As IntPtr
End Function
<DllImport("kernel32.dll", SetLastError:=True)>
Shared Function PowerSetRequest(PowerRequestHandle As IntPtr, RequestType
As PowerRequestType) As Boolean
End Function
<DllImport("kernel32.dll", SetLastError:=True)>
Shared Function PowerClearRequest(PowerRequestHandle As IntPtr, RequestType
As PowerRequestType) As Boolean
End Function
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Structure POWER_REQUEST_CONTEXT
Public Version As UInt32
Public Flags As UInt32
<MarshalAs(UnmanagedType.LPWStr)>
Public SimpleReasonString As String
End Structure
End Class
Returning STATUS_SUCCESS for Nt{Create,Set,Clear}PowerRequest gets rid of the
errors. AFAICT it should be pretty safe to just return success from these three
functions, right?
Relevant console-output:
009c:fixme:ntdll:NtCreatePowerRequest (0x22d5e8, 0x22d5f0): stub
009c:fixme:ntdll:NtSetPowerRequest (0x110ea80, 1): stub
.
.
009c:fixme:ntdll:NtClearPowerRequest (0x110ea80, 1): stub
--
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=45455
Bug ID: 45455
Summary: Installation of Cetus3D-Software crashes
Product: Wine
Version: 3.0.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pellwestphal(a)googlemail.com
Distribution: ---
Hello forum,
I wanted to install this software: https://www.tiertime.com/downloads/software/
its a 3D-printer software to load print jobs and control the printer.
https://pastebin.com/ThMrEcAh <- terminal output during installation
The installation starts up fine and I can go through the first few steps
without any issues except those repeating first lines you see in the terminal
paste. When I come to the actual installation it starts but then crashes after
the installation bar filled after a few seconds. The errors and fixme lines
appear instantly in the terminal.
Please help finding the underlying issue
My system is an x220 running Ubuntu 16.04 LTS with an i3wm as ui.
Thank you,
Per
--
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=43251
Bug ID: 43251
Summary: Anarchy Online Login Window Play and Settings button
disapper after minimising and maximising window
Product: Wine
Version: 2.11
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Hello everyone,
I noticed some strange behaviour in Anarchy Online.
Steps to reproduce:
- Start up AnarchyOnline.exe
- Patch the game (if necessary)
- Click the minimise button of the window
- Maximise the window again
-> Settings and play button disappear.
--
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=57083
Bug ID: 57083
Summary: ClickStamper: stamp circle is missing.
Product: Wine
Version: 9.15
Hardware: x86-64
URL: https://web.archive.org/web/20240819141031/https://ftp
.vector.co.jp/75/95/3364/ClickStamper_300.zip
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: sagawa.aki+winebugs(a)gmail.com
Distribution: Ubuntu
Created attachment 76960
--> https://bugs.winehq.org/attachment.cgi?id=76960
image comparision (edited)
Click Stamper(クリックスタンパー)[1] is an electronic seal software that creates stamp
images with automatic layouts. On wine, stamp circle is missing.
Steps to Reproduce:
1. Download ClickStamper_300.zip from [2].
2. % unzip ClickStamper_300.zip
3. % cd ClickStamper_300
4. % LANG=ja_JP.UTF-8 wine ClickStamper.exe
Actual results:
Red circle is not shown in the main window.
See left side of attached image captured on Wine.
Expected results:
Red circle is shown in the main window.
See right side of attached image captured on native (Windows 10).
[1] http://hp.vector.co.jp/authors/VA041064/soft/click_stamper.html
[2] https://ftp.vector.co.jp/75/95/3364/ClickStamper_300.zip
SHA1(ClickStamper_300.zip) = 5da66171ee3d77debf93a20cfbfde5a7654cc6dc
--
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=57070
Bug ID: 57070
Summary: OpenGL performance regression in Wine 9.15
Product: Wine
Version: 9.15
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: i.r.e.c.c.a.k.u.n+bugs.winehq.org(a)gmail.com
Distribution: ---
In Wine 9.15, I observe a serious performance regression, presumably in OpenGL
apps. DirectX stuff is fine.
Extended renderer info (GLX_MESA_query_renderer):
Vendor: AMD (0x1002)
Device: AMD Radeon RX 580 Series (radeonsi, polaris10, ACO, DRM 3.58,
6.11.0-rc3) (0x67df)
Version: 24.1.5
Accelerated: yes
Video memory: 8192MB
Unified memory: no
Preferred profile: core (0x1)
Max core profile version: 4.6
Max compat profile version: 4.6
Max GLES1 profile version: 1.1
Max GLES[23] profile version: 3.2
Can't say much more, nothing interesting in logs.
However, I have done a bisection.
849d7aa3c72df7fee0372a7fcc9e058a4b3795bf is the first bad commit
commit 849d7aa3c72df7fee0372a7fcc9e058a4b3795bf
Author: Rémi Bernon <rbernon(a)codeweavers.com>
Date: Mon Jul 1 11:03:57 2024 +0200
winex11: Rely on win32u previous surface reuse.
dlls/winex11.drv/bitblt.c | 16 +++-------------
1 file changed, 3 insertions(+), 13 deletions(-)
Unfortunately, I don't understand what's going on with this code.
--
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=56825
Bug ID: 56825
Summary: Unable to see screen for Harmony Assistant version
9.9.8d (64 bit)
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dheorchestra(a)gmail.com
Distribution: ---
Created attachment 76632
--> https://bugs.winehq.org/attachment.cgi?id=76632
screen shot of installed Harmony Assistant 9.9.8d (64 bit). Cannot see
installed program screen.
I am using Linux Lite 7.0
Download Link for Harmony Assistant version 9.9.8d (64 bit)
https://www.myriad-online.com/en/products/harmony.htm
When running a new installation of the Windows version of Harmony Assistant
v9.9.8d (64-bit) all I receive is a black screen with little white dots on it
when the program is installed.
--
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=57036
Bug ID: 57036
Summary: Splashtop RMM client crashes on Wine 9.14
Product: Wine
Version: 9.14
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: gdiplus
Assignee: wine-bugs(a)winehq.org
Reporter: patm(a)ait.cx
Distribution: ---
Created attachment 76887
--> https://bugs.winehq.org/attachment.cgi?id=76887
terminal output
The Splashtop RMM client works on Wine 9.0 but crashes with a gdiplus error on
9.14 when Options / Advanced is clicked. Terminal output attached.
The app can be downloaded from here:
https://my.splashtop.com/rmm/win
To run the new (3.6.6.0) version of the app on any version of Wine, the
following patch is required:
https://gitlab.winehq.org/wine/wine/-/commit/a4f111a4953e2f01479cb152676965…
To reproduce the problem, install the app, run strwinclt.exe, and then click
Options / Advanced.
--
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=53839
Bug ID: 53839
Summary: Anarchy Online (Old Engine) Installer hangs after
downloading game files
Product: Wine
Version: 7.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
sha256sum AnarchyOnline_EP1.exe
ed5ff785e38cbee788f30c5c6305b441c3c1c8590f852b53199c9d8c15607c9e
AnarchyOnline_EP1.exe downloaded from
https://ctrack.funcom.com/ad/?ref=AODOWNLOAD
Tested in a clean prefix on Slackware 15.0 with wine 7.19
It downloades the necessary game files but hangs at the end. (execute
'install.exe')
--
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.