https://bugs.winehq.org/show_bug.cgi?id=57499
Bug ID: 57499
Summary: .....
Product: Wine
Version: 9.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: n296869(a)rtrtr.com
Distribution: ---
SOFTTWARE NAME BY CLICK NOT RUNING. URL https://www.byclickdownloader.com/
--
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=57500
Bug ID: 57500
Summary: SQLyog no longer works with WINE
Product: Wine
Version: 9.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mitch(a)claborn.net
Distribution: ---
Created attachment 77527
--> https://bugs.winehq.org/attachment.cgi?id=77527
output from running SQLyog installer
SQLyog 13.3.0
Xubutu 24.04
SQLyog was working fine with WINE 9.20 and 9.21. I'm not sure if it ever worked
with 9.22. I reverted to 9.20 and SQLyog is still not working.
Symptoms: a ps command shows that SQLyog is running, but the window never
appears. I tried running the SQLyog installer and experienced the same
symptoms. I'll attach console output from both the installer and the execution
attempt.
I suspect that there were some OS patches between the last time that it worked
correctly and the first failure.
As a temporary workaround I'm using Crossover - it is working fine.
--
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=57498
Bug ID: 57498
Summary: ASan expects some imports to intercept from
api-ms-win-core-heap-l1-1-0.dll
Product: Wine
Version: 9.22
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ucrtbase
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)mailbox.org
Distribution: ---
This is a followup to bug #50993 and bug #49828.
Starting an instrumented executable with ASAN_OPTIONS='verbosity=1'
gives this output:
Failed to intercept ucrtbase.dll import HeapAlloc
Failed to intercept ucrtbase.dll import HeapFree
Failed to intercept ucrtbase.dll import HeapReAlloc
Failed to intercept ucrtbase.dll import HeapSize
This seems to be caused by ASan expecting these imports to be linked in
through api-ms-win-core-heap-l1-1-0.dll.
But currently ucrtbase.dll in Wine links directly to kernel32.dll.
One workaround is to add to ASAN_OPTIONS windows_hook_rtl_allocators=1.
Another workaround is, if already building llvm-mingw from source, to modify
following location this way:
llvm-mingw/llvm-project/compiler-rt/lib/asan/asan_malloc_win.cpp:
#define INTERCEPT_UCRT_FUNCTION(func) \
if (!INTERCEPT_FUNCTION_DLLIMPORT( \
- "ucrtbase.dll", "api-ms-win-core-heap-l1-1-0.dll", func)) { \
+ "ucrtbase.dll", "kernel32.dll", func)) { \
Reproducing currently needs a modified llvm-mingw build, which allows
ASan to recognize a few more instructions like here:
https://github.com/llvm/llvm-project/pull/113085
--
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=57496
Bug ID: 57496
Summary: Application crashes upon launch
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Android
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mcreator134(a)gmail.com
Created attachment 77525
--> https://bugs.winehq.org/attachment.cgi?id=77525
The generated crash log from the app
Steinberg Download assistant: crashes upon launch, installed just fine.
--
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=57497
Bug ID: 57497
Summary: SOFTWARE tuberankjeet.exe LINUX KUBUNTU
Product: Wine
Version: 9.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: n296869(a)rtrtr.com
Distribution: ---
Created attachment 77526
--> https://bugs.winehq.org/attachment.cgi?id=77526
SOFTWARE tuberankjeet.exe
SOFTWARE tuberankjeet.exe LINUX KUBUNTU Q4WINE AND WINE
--
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=57306
Bug ID: 57306
Summary: Commit 5924ab4c515 breaks Nikon NX studio due to
memory corruption
Product: Wine
Version: 9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: christoph.bartoschek(a)gmail.com
Distribution: ---
Nikion NX Studio is crashing with errors like the following one since commit
5924ab4c515:
0024:fixme:uxtheme:BufferedPaintInit Stub ()
double free or corruption (out)
0024:err:seh:call_seh_handlers invalid frame 00007FFFFE0FECD0
(0000000000022000-0000000000120000)
0024:err:seh:NtRaiseException Exception frame is not in stack limits => unable
to dispatch exception.
By adding enough debug logs I see that:
- In function dibdrv_RoundRect from dlls/win32u/dibdrv/graphics.c max_points
becomes 30.
- Then top_points is allocated at size 15.
- The first call to get_arc_points returns 4: count = get_arc_points( dc,
AD_CLOCKWISE, &rect, start, end, top_points );
- The second call time it is called with top_points + counter which is
&top_points[4].
- Inside get_arc_points count becomes 8: count = generate_ellipse_top_half(
dc, width, height, points );
- Then the loop to calculate points starts with pos = count and it has 4
iterations.
- The last write is to points[8+3] = points[11] = top_points[11 + 4] =
top_points[15].
- top_points[15] is beyond the allocated array and it corrupts memory metadata.
--
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=50993
Bug ID: 50993
Summary: App compiled with address sanitizer don't work in Wine
Product: Wine
Version: 6.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikrutrafal(a)protonmail.com
Distribution: ---
When trying to use in Wine app compiled with address sanitizer and MinGW LLVM,
then this app doesn't run and print
```
0104:err:module:LdrInitializeThunk "libclang_rt.asan_dynamic-x86_64.dll" failed
to initialize, aborting
0104:err:module:LdrInitializeThunk Initializing dlls for
L"Z:\\mnt\\Miecz\\godot3.2\\bin\\a.exe" failed, status 80000003
```
To reproduce issue
Download and unpack Mingw-llvm(unlike Mingw GCC allows to build app with
address sanitizer)
https://github.com/mstorsjo/llvm-mingw/releases/download/20201020/llvm-ming…
2. set variables(change PATH_TO_CHANGE)
export MINGW32_PREFIX="/PATH_TO_CHANGE/i686-w64-mingw32-"
export MINGW64_PREFIX="/PATH_TO_CHANGE/x86_64-w64-mingw32-"
3. Copy to current directory all files from folder which contains
`libclang_rt.asan_dynamic-x86_64.dll` inside unpacked mingw
4. Compile and try to open app
echo "int main(){if(2>1){return 1;}}" > a.cpp
/PATH_TO_CHANGE/x86_64-w64-mingw32-clang++ a.cpp -fsanitize="address"
wine a.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.
https://bugs.winehq.org/show_bug.cgi?id=57476
Bug ID: 57476
Summary: Missing [out] attributes in dwrite.idl
Product: Wine
Version: 9.22
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: dwrite
Assignee: wine-bugs(a)winehq.org
Reporter: thomas_linder_puls(a)hotmail.com
Created attachment 77487
--> https://bugs.winehq.org/attachment.cgi?id=77487
updated dwrite.idl file
The dwrite.idl file lacks [out] attributes. I don't know whether your IDL tool
understands that attribute, but it makes are huge difference for my usage with
Microsoft's IDL compiler.
I have added them for you :-) in the attachment.
--
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=57285
Bug ID: 57285
Summary: Foxit Reader - maximized view don't work properly
Product: Wine
Version: 9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andreas.franz(a)arcor.de
Distribution: ---
Created attachment 77227
--> https://bugs.winehq.org/attachment.cgi?id=77227
Foxit maximized
Foxit Reader works well, until you'll try to maximize his window. Parts (right
side) of his window won't be visible. Window seems to be maximized, but
rendered with "normal" size.
Everything is fine on stable-branch.
--
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.