https://bugs.winehq.org/show_bug.cgi?id=45021
Bug ID: 45021
Summary: Wine
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: advpack
Assignee: wine-bugs(a)winehq.org
Reporter: jessicaputrixxo(a)gmail.com
WinZip 7: crashes when extracting a zip archive
--
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=37920
Bug ID: 37920
Summary: Wine is crashing when I use Winecfg in command line.
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: benoit.charbonnier(a)9online.fr
Distribution: ---
Created attachment 50509
--> https://bugs.winehq.org/attachment.cgi?id=50509
This is the text file where the error is reported.
Wine is crashing when I use Winecfg in command line. I use the version 1.6.2 on
PCLinuxOS. It happens since I have modified the sound configuration for fixing
the bad quality.
--
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=39601
Bug ID: 39601
Summary: program wowslider.exe stops working with error
message-log.
Product: Wine
Version: 1.6.2
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 2083820dc7f1f9(a)ikbenspamvrij.nl
Distribution: ---
Created attachment 52766
--> https://bugs.winehq.org/attachment.cgi?id=52766
wowslider freezes.
This program freezes and stops working :
http://wowslider.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=44612
Bug ID: 44612
Summary: A modified version of a pokemon go game crashes
whenever the Character interacts with an obstacle.
Product: Wine
Version: 3.0-rc5
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bonilla.p(a)gmail.com
Distribution: ---
Created attachment 60600
--> https://bugs.winehq.org/attachment.cgi?id=60600
log of the bug
Link to the specific app of the version of the pokemon go
http://www.mediafire.com/file/cl6f7n7s1hfmgh6/Pok%C3%A9mon+Proc%C3%A9s+0.8.…
It crashes whenever the character interacts with an object or barrier.
I have an Ubuntu 17-10 OS, and installed wine.
Not sure about the version of wine installed. wine --version returns 3.0 but
no mention to rc5 or rc6. I installed with the following sequence.
sudo dpkg --add-architecture i386
sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/'
wget https://dl.winehq.org/wine-builds/Release.key && sudo apt-key add
Release.key
sudo apt update && sudo apt install winehq-stable
--
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=49783
Bug ID: 49783
Summary: Fails to compile on Fedora 32, due to Latex errors.
Product: vkd3d
Version: 1.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: vkd3d
Assignee: wine-bugs(a)winehq.org
Reporter: eaglecomputers.ok(a)gmail.com
Distribution: ---
Fails to compile, with pdf to latex errors, and missing sty files for the
documentation building.
--
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=41410
Bug ID: 41410
Summary: Origin Installer: Fails with notification system does
not meet hardware requirements
Product: Wine
Version: 1.9.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: thomas.s.haugh(a)gmail.com
Distribution: ---
Created attachment 55771
--> https://bugs.winehq.org/attachment.cgi?id=55771
Terminal output from a clean wine 32bit prefix
Running the latest OriginSetup.exe fails with a notification that the system
fails to meet the hardware requirements.
https://download.dm.origin.com/origin/live/OriginSetup.exe
System Information:
Arch Linux x86_64
nvidia 370.28 driver
--
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=49265
Bug ID: 49265
Summary: Segfault when gcc uses MSVCRT_memcpy in copy
constructor
Product: Wine
Version: 5.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: winehq(a)twig.hk
Distribution: ---
Created attachment 67269
--> https://bugs.winehq.org/attachment.cgi?id=67269
Test Code
When gcc use memcpy to implement the copy constructor of an object with both
the '-mno-cygwin' and '-march=native' flags set for wineg++, the .exe.so
segfaults. The backtrace seems to have the arguments src & n switched for
MSVCRT_memcpy.
Code:
#include <windows.h>
#include <new>
struct Chars{
int a[100];
Chars(){
for(int i = 0; i != sizeof(a); ++i)
a[i] = i % 10;
}
};
BOOL WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR
lpCmdLine, int nShowCmd)
{
char x[10000];
const Chars c;
new (reinterpret_cast<Chars *>(&x)) Chars(c);
return 0;
}
If Chars::a[i] are all set to 0, it doesn't segfault. Probably as memcpy isn't
used.
Compiled & run with:
./../wine/tools/winegcc/wineg++ -MD -isystem ./../wine/include -isystem
./../wine/include/msvcrt -O0 -g3 -ggdb -mno-cygwin -march=native -c simple.cpp
-o build/simple.cpp.o
./../wine/tools/winegcc/wineg++ -L./../wine/dlls -L -fno-pic -isystem
./../wine/include -isystem ./../wine/include/msvcrt -O0 -g3 -ggdb -mno-cygwin
-march=native ./build/simple.cpp.o
--winebuild=./../wine/tools/winebuild/winebuild -o ./bin/simple
LD_LIBRARY_PATH=./../wine/libs/wine/:$LD_LIBRARY_PATH gdb --args
./../wine/loader/wine64-installed ./bin/simple.exe.so
Wine has been compiled from the git repo (./../wine/ , tagged with wine-5.8),
with configure args: --enable-win64 CFLAGS="-O0 -g3 -ggdb"
Removing either -mno-cygwin or -march=native stops the segfault
GDB backtrace:
Program received signal SIGSEGV, Segmentation fault.
0x00007ffff7748b77 in __memmove_ssse3_back () from /lib64/libc.so.6
(gdb) bt
#0 0x00007ffff7748b77 in __memmove_ssse3_back () from /lib64/libc.so.6
#1 0x00007ffff0629a3a in MSVCRT_memcpy (dst=0x21d450, src=0x190, n=71474) at
string.c:2338
#2 0x00007ffff7e691d3 in WinMain (hInstance=0x7ffff7e60000
<__wine_spec_pe_header+32742>,
hPrevInstance=0x0, lpCmdLine=0x11732 "", nShowCmd=1) at simple.cpp:17
#3 0x00007ffff7e694a1 in main (argc=1, argv=0x714630) at crt_winmain.c:53
#4 0x00007ffff7e69333 in mainCRTStartup () at crt_main.c:62
#5 0x000000007b4568ec in call_process_entry (peb=0x7fffffd8f000,
entry=0x7ffff7e692be <mainCRTStartup>) at process.c:119
#6 0x000000007b456af1 in __wine_start_process (entry=0x7ffff7e692be
<mainCRTStartup>,
peb=0x7fffffd8f000) at process.c:153
#7 0x0000000000000000 in ?? ()
in #1 the src=0x190 (400) and n=71474 (0x11732) seem switched, as src is the
sizeof(Chars)
--
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=49777
Bug ID: 49777
Summary: Bugged .NET UI has different graphics memory behaviour
Product: Wine
Version: 5.0.2
Hardware: x86-64
URL: https://github.com/farmerbriantee/AgOpenGPS/releases/d
ownload/4.3.10/AgOpenGPS_v4.3.10.msi
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mirh(a)protonmail.ch
Distribution: ---
Created attachment 68087
--> https://bugs.winehq.org/attachment.cgi?id=68087
UI bug
So, I have this .NET application (mono is already enough to run it half
decently). That has a bug.
https://github.com/farmerbriantee/AgOpenGPS/issues/176
For whatever reason the buttons on the right only work and display if you have
a certain.. screen aspect ratio and/or resolution (this happens in Windows too
if it wasn't clear enough).
Now, the thing is, at least when I'm running at 1024x768 on W7 the buttons UI
area just so happen to be superimposed with "whatever was on that area of the
screen before the application window executed".
In linux instead, the behavior seems "replace with a corrupted view of the
calling parent process framebuffer" (or at least, I believe what you see in the
attached screenshot is a scrambled version of the XFCE terminal)
I don't even know where to start logging (neither native dotnet nor native
gdiplus made a difference).. but at least I believe this should amount to a bug
in wine?
Also, in a somewhat related question.. Are all windows supposed to be always
"infinitely resizable"? Because in Windows I'm barred from going below certain
dimensions, while here even 10x10 pixels seems legit.
--
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=49769
Bug ID: 49769
Summary: After update can no longer position Winamp components
on Desktop where I want them
Product: Wine-staging
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nanook(a)eskimo.com
CC: leslie_alistair(a)hotmail.com, z.figura12(a)gmail.com
Distribution: ---
I normally have winamp 5.666 on the right side of my desktop, with the
controller, then eq, then playlist. After a recent wine update, the eq
overlapped the play list and can not be moved, that is I can drag and drop as
before. I de-installed and re-installed winamp, no help.
--
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=49768
Bug ID: 49768
Summary: Clear Linux Wine Forgotten Hope 2.57 Standalone
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: ryanrkpm(a)yahoo.com
Distribution: ---
Created attachment 68073
--> https://bugs.winehq.org/attachment.cgi?id=68073
terminal output
I install and try to run. It opens as BF2 and I click on the FH2 server. It
restarts into FH2 and crashes upon start.
--
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.