https://bugs.winehq.org/show_bug.cgi?id=40489
Bug ID: 40489
Summary: wbemprox does not support ASSOCIATORS query
Product: Wine
Version: 1.9.8
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wmi&wbemprox
Assignee: wine-bugs(a)winehq.org
Reporter: michael(a)fds-team.de
CC: hans(a)meelstraat.net
Distribution: ---
After working around bug 20776 3DMark Vantage tries to execute the following
wmi query:
trace:wbemprox:wbem_services_ExecQuery 0x162580, L"WQL", L"ASSOCIATORS OF
{Win32_DiskPartition.DeviceID=\"Disk #0, Partition #0\"} WHERE AssocClass =
Win32_LogicalDiskToPartition", 0x00000030, (nil), 0x10afce0
err:wbemprox:wql_error syntax error, unexpected TK_ID, expecting TK_SELECT
Wine does not support ASSOCIATORS queries so far and fails.
In order to make it easier to test the problem without working around the
3DMark Vantage bugs, I created tests with similar queries to reproduce the
issue (see
https://www.winehq.org/pipermail/wine-patches/2016-April/149324.html)
--
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=47126
Bug ID: 47126
Summary: GCC 9.x compilation warnings for Wine 4.7
Product: Wine
Version: 4.7
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aros(a)gmx.com
Distribution: ---
1. _________________________________________________________ winevdm.c
_________________________________________________________
winevdm.c: In function ‘main’:
winevdm.c:337:24: warning: ‘%s’ directive writing up to 259 bytes into a region
of size 128 [-Wformat-overflow=]
337 | sprintf( buf, "%s\nInvalid startup directory. Check your pif
file.",
| ^~
winevdm.c:337:9: note: ‘sprintf’ output between 49 and 308 bytes into a
destination of size 128
337 | sprintf( buf, "%s\nInvalid startup directory. Check your pif
file.",
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
338 | filename);
| ~~~~~~~~~
winevdm.c:343:24: warning: ‘%s’ directive writing up to 259 bytes into a region
of size 128 [-Wformat-overflow=]
343 | sprintf( buf, "%s\nInvalid program file name. Check your pif
file.",
| ^~
winevdm.c:343:9: note: ‘sprintf’ output between 49 and 308 bytes into a
destination of size 128
343 | sprintf( buf, "%s\nInvalid program file name. Check your pif
file.",
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
344 | filename);
| ~~~~~~~~~
winevdm.c:325:24: warning: ‘%s’ directive writing up to 259 bytes into a region
of size 128 [-Wformat-overflow=]
325 | sprintf( buf, "%s\nInvalid file format. Check your pif file.",
| ^~
winevdm.c:325:9: note: ‘sprintf’ output between 43 and 302 bytes into a
destination of size 128
325 | sprintf( buf, "%s\nInvalid file format. Check your pif file.",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
326 | filename);
| ~~~~~~~~~
2. _________________________________________________________ winhelp.c
_________________________________________________________
winhelp.c: In function ‘WINHELP_GetWindowInfo’:
winhelp.c:280:60: warning: ‘%s’ directive output may be truncated writing up to
127 bytes into a region of size 50 [-Wformat-truncation=]
280 | snprintf(mwi.caption, sizeof(mwi.caption), "%s %s - %s",
| ^~
281 | hlpfile->lpszTitle, tmp, hlpfile->lpszPath);
| ~~~
winhelp.c:280:13: note: ‘snprintf’ output 5 or more bytes (assuming 132) into a
destination of size 51
280 | snprintf(mwi.caption, sizeof(mwi.caption), "%s %s - %s",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
281 | hlpfile->lpszTitle, tmp, hlpfile->lpszPath);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3. _________________________________________________________ winemenubuilder.c
_________________________________________________________
winemenubuilder.c: In function ‘InvokeShellLinker’:
winemenubuilder.c:2887:14: warning: array subscript -1 is outside array bounds
of ‘WCHAR[1024]’ {aka ‘short unsigned int[1024]’} [-Warray-bounds]
2887 | p[-1] = '"';
| ~^~~~
winemenubuilder.c:2783:11: note: while referencing ‘szArgs’
2783 | WCHAR szArgs[INFOTIPSIZE], szIconPath[MAX_PATH],
szWMClass[MAX_PATH];
| ^~~~~~
4. _________________________________________________________ debug.h
_________________________________________________________
In file included from dn.c:35:
../../include/wine/debug.h:497:48: warning: ‘__wine_dbch___default’ defined but
not used [-Wunused-const-variable=]
497 | static struct __wine_debug_channel * const __wine_dbch___default =
&__wine_dbch_##ch
| ^~~~~~~~~~~~~~~~~~~~~
dn.c:37:1: note: in expansion of macro ‘WINE_DEFAULT_DEBUG_CHANNEL’
37 | WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
| ^~
5. _________________________________________________________
arb_program_shader.c _________________________________________________________
arb_program_shader.c: In function ‘shader_arb_get_register_name’:
arb_program_shader.c:993:55: warning: ‘%s’ directive output may be truncated
writing up to 49 bytes into a region of size 20 [-Wformat-truncation=]
993 | snprintf(priv->addr_reg, sizeof(priv->addr_reg), "%s", src);
| ^~
......
1127 | shader_arb_request_a0(ins, rel_reg);
| ~~~~~~~
arb_program_shader.c:993:5: note: ‘snprintf’ output between 1 and 50 bytes into
a destination of size 20
993 | snprintf(priv->addr_reg, sizeof(priv->addr_reg), "%s", src);
|
6. _________________________________________________________ mmdevdrv.c
_________________________________________________________
mmdevdrv.c: In function ‘AUDDRV_GetAudioEndpoint’:
mmdevdrv.c:644:33: warning: ‘%s’ directive writing up to 255 bytes into a
region of size 60 [-Wformat-overflow=]
644 | sprintf(dev_node_name, "pcm.%s", name);
| ^~
......
813 | if(handle_underrun && ((lconf =
make_handle_underrun_config(alsa_name)))){
|
~~~~~~~~~
mmdevdrv.c:644:5: note: ‘sprintf’ output between 5 and 260 bytes into a
destination of size 64
644 | sprintf(dev_node_name, "pcm.%s", name);
|
7. _________________________________________________________ dsm_ctrl.c
_________________________________________________________
In file included from dsm_ctrl.c:34:
dsm_ctrl.c: In function ‘TWAIN_OpenDS’:
../../include/wine/debug.h:93:5: warning: ‘%s’ directive argument is null
[-Wformat-overflow=]
93 | wine_dbg_log( __dbcl, __dbch, __FUNCTION__, args); } } while(0)
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
../../include/wine/debug.h:90:8: note: in expansion of macro ‘__WINE_DBG_LOG’
90 | __WINE_DBG_LOG
| ^~~~~~~~~~~~~~
../../include/wine/debug.h:489:36: note: in expansion of macro ‘__WINE_DPRINTF’
489 | #define WINE_ERR
__WINE_DPRINTF(_ERR,__wine_dbch___default)
| ^~~~~~~~~~~~~~
../../include/wine/debug.h:528:36: note: in expansion of macro ‘WINE_ERR’
528 | #define ERR WINE_ERR
| ^~~~~~~~
dsm_ctrl.c:322:3: note: in expansion of macro ‘ERR’
322 | ERR("Failed to load TWAIN Source %s\n", modname);
| ^~~
dsm_ctrl.c:322:36: note: format string is defined here
322 | ERR("Failed to load TWAIN Source %s\n", modname);
| ^~
8. _________________________________________________________ oleaut.c
_________________________________________________________
oleaut.c: In function ‘get_typeinfo_for_iid’:
oleaut.c:876:39: warning: ‘%s’ directive writing up to 99 bytes into a region
of size between 92 and 291 [-Wformat-overflow=]
876 | sprintf(typelibkey, "Typelib\\%s\\%s\\0\\win%u", tlguid, ver,
sizeof(void *) == 8 ? 64 : 32);
| ^~ ~~~
oleaut.c:876:5: note: ‘sprintf’ output between 18 and 316 bytes into a
destination of size 300
876 | sprintf(typelibkey, "Typelib\\%s\\%s\\0\\win%u", tlguid, ver,
sizeof(void *) == 8 ? 64 : 32);
|
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9. _________________________________________________________ ppl.l
_________________________________________________________
ppl.l: In function ‘pp_do_include’:
ppl.l:1624:3: warning: ‘%s’ directive argument is null [-Wformat-overflow=]
1624 | pp_status.input, pp_status.line_number,
pp_incl_state.state, pp_incl_state.ppp, pp_incl_state.ifdepth);
| ^
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1625 | pp_status.file = fp;
| ~~~~~~~~~~~~~~~~~~~~
--
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=13020
Summary: wintetris 1.01 background color wrong sometimes
Product: Wine
Version: CVS/GIT
Platform: Other
URL: http://www.tucows.com/preview/333734
OS/Version: other
Status: NEW
Keywords: download
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
wintetris normally shows a blue background, but
in two situations leaves the background grey under wine:
1) on initial run from the installer
2) on dismissing the About box
This is a purely cosmetic problem, the game is playable.
--
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=46111
Bug ID: 46111
Summary: Pokerstars : Cashier window Crashes
Product: Wine
Version: 3.19
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: debojyotydatta(a)gmail.com
Distribution: ---
Created attachment 62745
--> https://bugs.winehq.org/attachment.cgi?id=62745
Bug Report
Pokerstars Cashier window Crashes in Wine 3.19 staging Ubuntu 18.04 64bit
--
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=23974
Summary: Miranda's "View/Change My Details" dialog is
malfunctioning
Product: Wine
Version: 1.3.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Created an attachment (id=30108)
--> (http://bugs.winehq.org/attachment.cgi?id=30108)
"View/Change My Details" dialog as rendered by Wine 1.3.0
Steps to reproduce:
1) Install Miranda with ICQ plugin only
2) Register ICQ account (UIN: http://www.icq.com/register/)
3) Run Miranda and login with your UIN
4) Try to "View/Change My Details" - text and background of the selected
strings of this dialog will be white, and you will not be able to change your
details, because strings are unclickable.
--
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=45484
Bug ID: 45484
Summary: iExplorer 8 for winXP cannot install
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: efa(a)iol.it
Distribution: ---
Created attachment 61839
--> https://bugs.winehq.org/attachment.cgi?id=61839
error installing iE8
as built in iE in Wine (Wine Internet Explorer 3.0.2) is limited, no Settings,
start page not settable, Preferred not working, and so on, I tried the
original.
After setting wincfg to Windows version as WinXP,
trying to install iE8 for WinXP I got the error attached,
that say a more recent of iE is present.
I downloaded iE8 from the link at page:
https://appdb.winehq.org/objectManager.php?sClass=version&iId=16041
that is:
http://download.microsoft.com/download/C/C/0/CC0BD555-33DD-411E-936B-73AC6F…
--
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=37235
Bug ID: 37235
Summary: 1Password Context Menu won't convert from standard
menu time to a submenu parent
Product: Wine
Version: 1.7.25
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: winehq-bugzilla(a)richardpayne.name
Created attachment 49508
--> https://bugs.winehq.org/attachment.cgi?id=49508
Screenshots of expected windows behaviour
1Password's browser extension helper menu does something a little unusual. It
presents a list logins in a menu that can be clicked to open.
However, it also lets you right click on each menu item. Doing so converts the
item to a sub-menu parent. The sub-menu gives you access to the details of the
login.
Running under Wine, the "right click to convert item" action does not work.
I've attached screenshots, but I'm not really sure what else you might need to
investigate this. Please advise.
--
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=11782
Summary: Cossacks EW: Game does not redraw
Product: Wine
Version: 0.9.56.
Platform: PC
URL: http://www.download.com/Cossacks-The-Art-of-War-
demo/3000-7485_4-10229103.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: krzychoocpp(a)gmail.com
Created an attachment (id=11042)
--> (http://bugs.winehq.org/attachment.cgi?id=11042)
WINEDEBUG+ddraw
In wine 0.9.55, when starting Cossacks, all I saw was black or white screen
(white with opengl ddraw renderer, black with gdi).
With wine 0.9.56, this was partially fixed. Game starts and menu is rendered.
But screen is updated only when I click menu item. It is a bit hard to do,
because I cannot see where exactly cursor is. When I finally click one of the
menu items, everything works as it should for about a second - fade effect, and
other menu screen is shown.
You can download Cossacks: Art of War demo from:
http://www.download.com/Cossacks-The-Art-of-War-demo/3000-7485_4-10229103.h…
It's addon to EW and shows this problem too.
I experience this problem with GF 7300GS/nVidia driver and Radeon Mobility 7500
using radeon driver.
In attached debug log I marked when I started game, clicked menu item, etc.
--
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=29727
Bug #: 29727
Summary: Wine fails to correctly rerender UI elements upon
interaction with them
Product: Wine
Version: 1.4-rc1
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
Classification: Unclassified
This is a follow up to bug 22256.
When you move the horizontal delimiter its appearance breaks until you
minimize/maximize a dialog window - it looks like some strange kind of UI
tearing.
To reproduce:
1) Unpack this archive anywhere (
http://bugs.winehq.org/attachment.cgi?id=38570 )
2) Double click Samantha Taylor
3) Try to move up and down the horizontal delimiter - its appearance will
momentarily break.
--
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=41434
Bug ID: 41434
Summary: Wine crashes when loading world from .mcl file in
MUSHclient.
Product: Wine
Version: 1.9.18
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: michaelclarksly(a)gmail.com
Created attachment 55805
--> https://bugs.winehq.org/attachment.cgi?id=55805
This is the backtrace in the Program Error Details when wine crashes.
Wine crashes at random times after loading a world from a .mcl (Lusternia) in
MUSHclient (Crown System). Sometimes it will be fine for hours and sometimes
crash on initial load. It always crashes if I attempt to reload the script. I
have attached the backtrace which as far as I can tell seems to be the same
each time it crashes.
--
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.