https://bugs.winehq.org/show_bug.cgi?id=47899
Bug ID: 47899
Summary: Review the VM name validation
Product: Wine-Testbot
Version: unspecified
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fgouget(a)codeweavers.com
Distribution: ---
The web interface allows the creation of VMs that have dashes in their name.
But when untainting its parameters LibvirtTool considers such names to be
invalid, so that trying to revert these VMm fails.
There is a VM::Validate() method that should validate the VM name among others,
but obviously it cannot be used to check and untaint script parameters.
So the VM name validation criterions need to be checked and a standard function
provided.
--
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=47492
Bug ID: 47492
Summary: Typo in function name (__wine_spec_fini)
Product: Wine
Version: 4.12.1
Hardware: x86
OS: Solaris
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: tools
Assignee: wine-bugs(a)winehq.org
Reporter: evgeny.v.litvinenko(a)gmail.com
Created attachment 64875
--> https://bugs.winehq.org/attachment.cgi?id=64875
A patch example.
Hi all.
It looks like there is a typo in the file tools/winegcc/winegcc.c
The command
ggrep "[^_]_wine_spec_fini" -r *
in the source tree finds two places where __wine_spec_fini is with one
underscore in the begining.
I've attached a patch just to show the places with typo (I think it's a typo),
feel free to use it as you want.
Regards
evgeny.
--
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=17272
Summary: Zmodeler: Icons and overall GUI blinky
Product: Wine
Version: 1.1.14
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=19272)
--> (http://bugs.winehq.org/attachment.cgi?id=19272)
Simple log of fixme's in the console
Zmodeler is not quite in full working condition (but tons better than prior to
1.1.14). When using the buttons on the Main Toolbar the icons which
occasionally disappear and overall 3D performance is rather slow. You can
mouseover the icons and they will reappear, but it isn't overly practical...
Attached is a log. I believe it has something to do with"LockWindowUpdate".
--
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=30827
Bug #: 30827
Summary: Uninitialized memory reference in
create_icon_pixmaps() -> GetDIBits() ->
bitmapinfoheader_from_user_bitmapinfo()
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
While looking at bug 30826, I saw
Conditional jump or move depends on uninitialised value(s)
at bitmapinfoheader_from_user_bitmapinfo (dib.c:177)
by GetDIBits (dib.c:1210)
by create_icon_pixmaps.isra.8 (window.c:883)
create_icon_pixmaps calls GetDIBits with bits=NULL and a mostly uninitialized
info, but bitmapinfoheader_from_user_bitmapinfo() assumes that biCompression
has already been initialized.
gdi32/dib.c:
149 static BOOL bitmapinfoheader_from_user_bitmapinfo( BITMAPINFOHEADER
*dst, const BITMAPINFOHEADER *info )
150 {
...
166 else if (info->biSize >= sizeof(BITMAPINFOHEADER)) /* assume
BITMAPINFOHEADER */
167 {
168 *dst = *info;
169 }
...
176 dst->biSize = sizeof(*dst);
177 if (dst->biCompression == BI_RGB || dst->biCompression ==
BI_BITFIELDS)
178 dst->biSizeImage = get_dib_image_size( (BITMAPINFO *)dst );
1187 INT WINAPI GetDIBits(
1188 HDC hdc, /* [in] Handle to device context */
1189 HBITMAP hbitmap, /* [in] Handle to bitmap */
1190 UINT startscan, /* [in] First scan line to set in dest bitmap */
1191 UINT lines, /* [in] Number of scan lines to copy */
1192 LPVOID bits, /* [out] Address of array for bitmap bits */
1193 BITMAPINFO * info, /* [in,out] Address of structure with bitmap
data */
1194 UINT coloruse) /* [in] RGB or palette index */
1195 {
...
1208 /* Since info may be a BITMAPCOREINFO or any of the larger
BITMAPINFO structures, we'll use our
1209 own copy and transfer the colour info back at the end */
1210 if (!bitmapinfoheader_from_user_bitmapinfo( &dst_info->bmiHeader,
&info->bmiHeader )) return 0;
....
1212 if (bits &&
1213 (dst_info->bmiHeader.biCompression == BI_JPEG ||
dst_info->bmiHeader.biCompression == BI_PNG))
winex11.drv/window.c:
868 static BOOL create_icon_pixmaps( HDC hdc, const ICONINFO *icon, struct
x11drv_win_data *data )
869 {
870 char buffer[FIELD_OFFSET( BITMAPINFO, bmiColors[256] )];
871 BITMAPINFO *info = (BITMAPINFO *)buffer;
...
881 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
882 info->bmiHeader.biBitCount = 0;
883 if (!(lines = GetDIBits( hdc, icon->hbmColor, 0, 0, NULL, info,
DIB_RGB_COLORS ))) goto failed;
Note that GetDIBits is careful to avoid referencing biCompression itself
when bits is NULL, but the function it calls doesn't know whether bits is NULL.
(bug 30266 is nearby but doesn't seem related?)
--
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=35937
Bug ID: 35937
Summary: The file crashed upon loading the program.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: carlino.designs(a)gmail.com
Created attachment 47995
--> http://bugs.winehq.org/attachment.cgi?id=47995
Error log file for eDCAA.exe
The file crashed upon loading the program.
The file can be downloaded at:
http://brightemo.co.uk/download/eDCAA.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.
http://bugs.winehq.org/show_bug.cgi?id=27570
Summary: Aliens Vs Predator 2 Demo is temporary confined
ingame.
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
I've tried the marine demo at the start the mouse movement is confined like bug
#6971 until you right click or over time, it works as per usual after this plus
"Automatically capture the mouse input in full-screen window" changes nothing.
Make fmv videos not accessible to speed up testing.
I haven't tested when you start the next level due to being a demo.
--
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.
https://bugs.winehq.org/show_bug.cgi?id=43804
Bug ID: 43804
Summary: [Steam] Alien Swarm Reactive Drop: GPU hang after a
minute or two
Product: Wine
Version: 2.17
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maraku(a)gmx.com
Distribution: ---
Created attachment 59338
--> https://bugs.winehq.org/attachment.cgi?id=59338
dmesg/kernel log cut to the GPU hang lines
After starting running Alien Swarm Reactive Drop through Steam, the GPU errors
and hangs (i don't know how else to describe this behavior). The X-display
becomes unresponsive, and the only way to "fix" this is to switch to another
virtual terminal and end the alien swarm wine process.
I've attached a dmesg/kernel log. Wine itself does not crash (other than for
the web helper, which I do not believe is related to this crash), so I'm not
sure how to get a stack trace.
I'm running the 4.13.4 kernel, but this happened with the 4.13.2 kernel as
well.
The game used to run fine, but I believe the September 15th update caused this
behavior. Let me know if I should attach any other logs. I could not find any
errors in the Xorg.0.log either.
This is on a 7th gen i7-7500U with the intel 620 graphics. No kernel bootflags
(in the bootloader command line) enabled.
Thanks,
Manu
--
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=35998
Bug ID: 35998
Summary: American Conquest: Divided Nation refuses to start.
(Black Screen followed by crash).
Product: Wine
Version: 1.7.16
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mjkolar(a)charter.net
I'm trying to play American Conquest: Divided Nations, but when I load it up, I
get a flash of black screen followed by a CTD. The console output is as
follows:
bash-4.2$ wine DMCR.exe
err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead.
fixme:win:EnumDisplayDevicesW ((null),0,0x33f5f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x33f828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33f6a8,0x00000000), stub!
err:winediag:xrandr12_init_modes Broken NVIDIA RandR detected, falling back to
RandR 1.0. Please consider using the Nouveau driver instead.
err:mmio:MMIO_ParseExtA No extension in szFileName: "Sound\\new\\dr+flute2.wav"
fixme:win:EnumDisplayDevicesW ((null),0,0x33f458,0x00000000), stub!
fixme:d3d_surface:d3dfmt_p8_init_palette No palette set.
Note that I installed this game according to the instructions listed on the
following appdb page:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=24902 , including
the winecfg changes, the external patch, deleting the video directory, and
setting ddraw to native for this app.
I have also installed the original American Conquest demo, and I can confirm it
works with wine 1.7.12, but not wine 1.7.16, so I am presuming there is a
regression between these two releases. The American Conquest: Divided Nation
full version does not run with either release, and shows the same error
messages for both wine releases. Note also I have used a nocd to get around
Divided Nations Starforce (III?) protection. The demo does not have said
protection, so not relevant in that case.
System:
Slackware 14.1 x86_64 with alien multilib pack.
Xorg 1.15.0
NVIDIA Proprietary Blob 334.21 /w Geforce GTX 285m
Pulseaudio 5.0
Wine 1.7.12
--
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=47691
Bug ID: 47691
Summary: Wine 4.14 DX11 demul07_111117 Resident Evil 2 Pal
Product: Wine
Version: 4.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: seganfl2k(a)gmail.com
Distribution: ---
Created attachment 65154
--> https://bugs.winehq.org/attachment.cgi?id=65154
Misssing Shaders
Wine 4.14 DX11 demul07_111117 Resident Evil 2 Pal
just some missing shader ect
here is the video to show you below
https://youtu.be/b6-3LNo1nWA
--
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=48161
Bug ID: 48161
Summary: AION (32bits) wine: Unhandled page fault on write
access to 00000009 at address 00BF00C2 (thread 0009)
Product: Wine
Version: 4.20
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dracoanarion(a)gmail.com
Distribution: ---
Created attachment 65789
--> https://bugs.winehq.org/attachment.cgi?id=65789
WINEDEBUG=+seh,+loaddll logs
The bug appears quite soon after starting the 32bit version of the app.
The app was started using the following command:
/opt/wine-staging/bin/wine 'C:\AION\bin32\AION.bin' -ip:79.110.83.80 -noweb
-noauthgg -st -charnamemenu -ingamebrowser -webshopevent:6 -f2p -lbox
-litelauncher -64 -ncping -nosatab -aiontv -nobs -60f2p -n20 /SessKey:
/CompanyID:11 /ChannelGroupIndex:-1 -lang:fra -litestep:9
This issue is not reproducible using wine-stable.
As far as I remember, this issue started to appear on 4.17 (but would need to
be confirmed).
--
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.