https://bugs.winehq.org/show_bug.cgi?id=49854
Bug ID: 49854
Summary: Please fix the stupid wldap32.dll error message
Product: Wine-staging
Version: 5.16
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: ---
Fedora 32, x64
wine-5.16-1.fc32.x86_64
When running a program what uses wldap32.dll AND wine-ldap.i686 is not
installed, you get a STUPID error message saying that wldap32.dll is "not
found". It is
right in the system32 directory. I took me over four hours of beating my head
against a wall to figure it out.
Would you please give a rational error message for this issue! Tell the user
that wine-ldap.i686 is otg installed!
Sorry for the crabbiness.
--
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=54256
Bug ID: 54256
Summary: Compile for wine under arm macOS (for running aarch64
windows apps) fails
Product: Wine
Version: unspecified
Hardware: aarch64
OS: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jintanzhong(a)gmail.com
Created attachment 73809
--> https://bugs.winehq.org/attachment.cgi?id=73809
Output of make
Error Output:
gcc -c -o dlls/ntdll/unix/signal_arm64.o dlls/ntdll/unix/signal_arm64.c
-Idlls/ntdll -Iinclude -D__WINESRC__ -D_NTSYSTEM_ \
-D_ACRTIMP= -DWINBASEAPI= -DWINE_UNIX_LIB -Wall -pipe -fcf-protection=none
-fno-stack-protector \
-fno-strict-aliasing -Wdeclaration-after-statement -Wempty-body
-Wignored-qualifiers -Winit-self \
-Wno-pragma-pack -Wstrict-prototypes -Wtype-limits -Wunused-but-set-parameter
-Wvla \
-Wwrite-strings -Wpointer-arith -gdwarf-4 -fPIC -fasynchronous-unwind-tables
-g -O2 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
In file included from dlls/ntdll/unix/signal_arm64.c:71:
dlls/ntdll/unix/dwarf.h:915:45: warning: taking the absolute value of unsigned
type 'ULONG_PTR' (aka 'unsigned long') has no effect [-Wabsolute-value]
case DW_OP_abs: stack[sp] = labs(stack[sp]); break;
^
dlls/ntdll/unix/dwarf.h:915:45: note: remove the call to 'labs' since unsigned
values cannot be negative
case DW_OP_abs: stack[sp] = labs(stack[sp]); break;
^~~~
<inline asm>:305:2: error: conditional branch requires assembler-local label.
'.L__wine_syscall_dispatcher_return' is external.
cbnz w16, .L__wine_syscall_dispatcher_return
^
1 warning and 1 error generated.
make: *** [dlls/ntdll/unix/signal_arm64.o] Error 1
Commands run: ./configure; make
Dependencies: all installed using homebrew latest version.
./configure output and make output: see 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=56586
Bug ID: 56586
Summary: libOSMesa 32-bit development files not found (or too
old), OpenGL rendering in bitmaps won't be supported
Product: Wine
Version: 9.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
This is _not_ a bug, I just would love to learn what this error message entails
exactly.
The reason I'm asking is that this package has quite heavy dependencies and I
wonder what I'll be missing:
# dnf install mesa-libOSMesa-devel.i686
Dependencies resolved.
================================================================================
Package Architecture Version Repository Size
================================================================================
Installing:
mesa-libOSMesa-devel i686 24.0.5-1.fc40 fedora 22 k
Installing dependencies:
llvm-libs i686 18.1.1-1.fc40 fedora 28 M
llvm-libs x86_64 18.1.1-1.fc40 fedora 28 M
mesa-libOSMesa i686 24.0.5-1.fc40 fedora 3.4 M
mesa-libOSMesa x86_64 24.0.5-1.fc40 fedora 3.2 M
Transaction Summary
================================================================================
Install 5 Packages
Total download size: 63 M
Installed size: 254 M
Is this ok [y/N]:
Operation aborted.
--
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=56393
Bug ID: 56393
Summary: Wine Crash when running IBM SPSS and data.
Product: Wine
Version: 9.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: zombie_ryushu(a)yahoo.com
Distribution: ---
Created attachment 76146
--> https://bugs.winehq.org/attachment.cgi?id=76146
Console output.
Wine hangs on startup of IBM SPSS. Console output below.
--
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=56568
Bug ID: 56568
Summary: There is a memory leak vulnerability in line 909 of
the /wine/tools/winegcc/winegcc.c file
Product: Wine
Version: 9.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lumingying(a)bupt.edu.cn
Distribution: ---
In the file winegcc.c located at /wine/tools/winegcc/, a pointer variable named
libgcc is defined at line 881. On line 907, this variable allocates a block of
dynamic memory using the function xmalloc. When the if statement on line 909
evaluates to true, the program returns. During this process, the dynamically
allocated memory pointed to by the variable libgcc is neither returned as on
line 914 nor freed, thus causing a memory leak defect, as shown in the diagram
below:
https://github.com/LuMingYinDetect/wine_defects/blob/main/wine_11.png
--
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=56567
Bug ID: 56567
Summary: There is a memory leak defect at line 580 of the file
"/wine/tools/widl/write_msft.c".
Product: Wine
Version: 9.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lumingying(a)bupt.edu.cn
Distribution: ---
The trigger path of the defect:
1.In line 573 of the /wine/tools/widl/write_msft.c file, a pointer variable
named encoded_string is defined. This pointer variable is passed as an argument
to the function CTL2_ENCODE_STRING on line 575, which allocates a dynamic
memory area, as shown in the following figure:
https://github.com/LuMingYinDetect/wine_defects/blob/main/wine_8.png
2.The role of ctl2_encode_string is to allocate a new dynamic memory area.
Specifically, a pointer variable named converted_string is defined on line 329.
The converted_string pointer variable allocates a dynamic memory area through
the xmalloc function on line 336, and is assigned to the function parameter
result (i.e., the incoming encoded_string variable) on line 348, as shown in
the following figure:
https://github.com/LuMingYinDetect/wine_defects/blob/main/wine_9.png
3.After the execution of ctl2_encode_string is completed, the variable
encoded_string is allocated a dynamic memory area. When the if statement on
line 580 of the program is true, the program will return, thus preventing the
execution of the operation to release the dynamic memory area pointed to by
encoded_string on line 587. This results in a memory leak defect, as shown in
the following figure.
https://github.com/LuMingYinDetect/wine_defects/blob/main/wine_10.png
--
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=55360
Bug ID: 55360
Summary: Can't run.
Product: Wine
Version: 8.0.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 1074536311(a)qq.com
Distribution: ---
ARRAY(0x557a25649d98)
--
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=56545
Bug ID: 56545
Summary: this poped up
Product: Wine
Version: 9.6
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: redfang790.ur5wj(a)aleeas.com
Distribution: ---
Created attachment 76301
--> https://bugs.winehq.org/attachment.cgi?id=76301
a copy of the error
i was installing a program and this error poped up
--
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=56578
Bug ID: 56578
Summary: was seeing if i could play minecraft
Product: Wine
Version: 9.0
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: redfang790.ur5wj(a)aleeas.com
Distribution: ---
Created attachment 76333
--> https://bugs.winehq.org/attachment.cgi?id=76333
i tried to install it
was trying to see if i could launch minecraft launcher and got this error
--
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=45565
Bug ID: 45565
Summary: Battle.net Helper.exe crashes when trying to view
Twitch streams
Product: Wine
Version: 3.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maciej.stanczew+b(a)gmail.com
Distribution: ---
Created attachment 61989
--> https://bugs.winehq.org/attachment.cgi?id=61989
Backtrace
Please note that this is a different issue than bug #43910.
Sometimes game pages in Battle.net App will have Twitch streams embedded in
their news items (I saw SC2, HotS, and the Overwatch League tab having this).
When opening such a page, Battle.net Helper.exe will crash (in a similar way to
bug #43910).
Two things visible in the logs that happen only in this case are
"fixme:cryptnet:verify_cert_revocation_from_aia_ext" and "MSAudDecMFT.dll nor
Msmpeg2adec.dll is not loaded".
The crash happens the same way in Wine devel and Wine Staging (both 3.13).
Workaround is to quickly click "Pause" or "Watch now" -- this will cause the
video to stop being loaded (clicking "Watch now" will open the stream in
browser).
--
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.