https://bugs.winehq.org/show_bug.cgi?id=8067
--- Comment #22 from Austin English <austinenglish(a)gmail.com> ---
This is your friendly reminder that there has been no bug activity for over a
year. Is this still an issue in current (1.7.51 or newer) 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.
http://bugs.winehq.org/show_bug.cgi?id=35813
Bug ID: 35813
Summary: SolidWorks 2013: Crash at the beginning
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Created attachment 47811
--> http://bugs.winehq.org/attachment.cgi?id=47811
Crash window
Steps to reproduce:
1) remove ~/.wine
2) winetricks vcrun2010 dotnet40
3) install SolidWorks 2013
4) wine SLDWORKS.exe
Behaviour:
Crash (See attachment)
Expected behaviour:
No crash.
Additional info:
1) Window from attachment is "sldexitapp.exe"
2) "sldProcMon.exe" started by "SLDWORKS.exe" takes all CPU resources
--
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=35752
Bug ID: 35752
Summary: Autodesk Inventor LT: Setup crashes after winetricks
dotnet35sp1 dotnet40
Product: Wine
Version: 1.7.14
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukasz.wojnilowicz(a)gmail.com
Created attachment 47744
--> http://bugs.winehq.org/attachment.cgi?id=47744
Crash window
Steps to reproduce:
1) remove ~/.wine
2) winetricks dotnet35sp1 dotnet40
3) wine Setup.exe
4) wait in initializing window
Behaviour:
Crash window (see attachment)
Expected behaviour:
No crash window.
Additional information:
There is no crash if I do not do step
"2) winetricks dotnet35sp1 dotnet40"
but these components are required to subsequent Inventor installation.
If I do only
"winetricks dotnet40"
then there is no crash too.
WINETRICKS_VERSION=20140302
--
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=37169
Bug ID: 37169
Summary: Powerdirector 11 Ultra: Run as Administrator
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mewtwo2643(a)yahoo.com
Created attachment 49403
--> https://bugs.winehq.org/attachment.cgi?id=49403
Output from Wine on the terminal
To get this issue:
Create new prefix, install Windows Media Player 9 (winetricks wmp9), run the
AutoRun.exe found on the disc, install it, and run it. After clicking on the
button to enter the full editor, it starts to load but then a window pops up
complaining it doesn't have administrator access and it quits afterwards.
I couldn't find a trial because powerdirector 12 is out now. This torrent might
work though:
https://kickass.to/cyberlink-powerdirector-11-ultra-11-0-0-3026-multilingua…
You also might be able to try using the Powerdirector 12 trial. The steps
should be the similar for 11 (tell me if they don't):
http://download.cnet.com/CyberLink-PowerDirector/3000-13631_4-10483012.html
The important thing is that Windows Media Player 9 is installed.
--
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=37133
Bug ID: 37133
Summary: Clang Static Analyzer: Null path
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies Null path
File: dlls/crypt32/rootstore.c
Location: line 413, column 10
Description: Null pointer passed as an argument to a 'nonnull' parameter
static BOOL import_certs_from_path(LPCSTR path,
HCERTSTORE store, BOOL allow_dir)
{
...
fd = open(path, O_RDONLY);
//Clang: Null pointer passed as
//an argument to a 'nonnull' parameter
...
}
To understand why Clang suspects that NULL may get here, let's examine the
fragment where this function is called:
static BOOL import_certs_from_dir(LPCSTR path, HCERTSTORE store)
{
...
char *filebuf = NULL;
//Clang: 'filebuf' initialized to a null pointer value
struct dirent *entry;
while ((entry = readdir(dir)))
{
...
size_t name_len = strlen(entry->d_name);
//Calling function to change filebuf
if (!check_buffer_resize(&filebuf, &bufsize,
path_len + 1 + name_len + 1))
{
ERR(...);
break;
}
snprintf(filebuf, bufsize, "%s/%s", path, entry->d_name);
if (import_certs_from_path(filebuf, store, FALSE) && !ret)
//Clang: Passing null pointer value via 1st parameter 'path'
//Clang: Calling 'import_certs_from_path'
ret = TRUE;
...
}
}
In this code, the check_buffer_resize function is called where either the value
of the filebuf variable must change or FALSE must be returned; but the function
may fail to change filebuf and return TRUE instead. Take a look at the
function's code below:
static BOOL check_buffer_resize(char **ptr_buf,
size_t *buf_size, size_t check_size)
{
if (check_size > *buf_size)
{
...
*ptr_buf = CryptMemAlloc(*buf_size);
...
}
return TRUE;
}
The function contains only one condition where the ptr_buf variable is changed,
and if this condition is false, the true return result will allow you to use
this variable further on.
A similar issue is with the memcpy() function:
File: server/directory.c
Location: line 548, column 21
Description: Null pointer passed as an argument to a 'nonnull' parameter
--
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=35990
Bug ID: 35990
Summary: keyboard becomes unresponsive in blizzard games
Product: Wine
Version: 1.7.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: kfirufk(a)gmail.com
Created attachment 48114
--> http://bugs.winehq.org/attachment.cgi?id=48114
Wow log file
I have encountered problems playing Diablo III and world of warcraft.
after a while of playing the keyboard becomes almost non responsive at all and
keys are being pressed randomly.
for now I created a log from wine for WoW, i'll create a log for diablo and
attach it later.
this log is from the start of the application till the problem started.
using gentoo linux ~amd64 with Nvidia GTX 680.
--
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=36936
Bug ID: 36936
Summary: Sibelius 6 omits required features during installation
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
Assignee: wine-bugs(a)winehq.org
Reporter: fiona.m(a)gmx.net
The MSI database of Sibelius 6 contains several features of level 4 which are
not installed because the INSTALLLEVEL is fixed to 3. All of these features
have the msidbFeatureAttributesUIDisallowAbsent attribute set, which makes me
believe that it is supposed to override the level.
If these features are not installed the application fails to start with an
error message requesting reinstallation as Resources.dll is missing.
--
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=37132
Bug ID: 37132
Summary: Clang Static Analyzer: Uninitialized array item
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies Uninitialized array item
File: dlls/avifil32/api.c
Location: line 1753, column 10
Description: Assigned value is garbage or undefined
#define MAX_AVISTREAMS 8
...
HRESULT WINAPI AVISaveVW(....int nStreams ....)
{
...
//Declaring 8-item array, [0..7]
PAVISTREAM pInStreams[MAX_AVISTREAMS];
...
if (nStreams >= MAX_AVISTREAMS) {
WARN(...);
return AVIERR_INTERNAL;
}
...
//Initializing first 7 items, [0..6].
for (curStream = 0; curStream < nStreams; curStream++) {
pInStreams[curStream] = NULL;
pOutStreams[curStream] = NULL;
}
...
for (curStream = 0; curStream < nStreams; curStream++) {
...
if (curStream + 1 >= nStreams) {
/* move the others one up */
PAVISTREAM *ppas = &pInStreams[curStream];
int n = nStreams - (curStream + 1);
do {
*ppas = pInStreams[curStream + 1];
//Clang: Assigned value is garbage or undefined
} while (--n);
}
...
}
...
}
In this code, an array of 8 items is declared. The code will continue executing
as long as the nStreams variable is less than 8, i.e. 7 at most. All the loops
in this function with the conditional statement (curStream < nStreams) fail to
iterate through the last item, both before its initialization and when using
it. The line Clang displayed the message on is just that very line where the
eighth item with the index 7 is taken, as the (curStream + 1 >= nStreams)
condition will be true at curStream==6 and nStreams==7. Addressing the
pInStreams[curStream + 1] array will give us the last, previously uninitialized
item.
--
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=8097
--- Comment #16 from Austin English <austinenglish(a)gmail.com> ---
This is your friendly reminder that there has been no bug activity for over a
year. Is this still an issue in current (1.7.51 or newer) 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.
http://bugs.winehq.org/show_bug.cgi?id=31283
Bug #: 31283
Summary: I Love Science! cannot detect it's CD
Product: Wine
Version: 1.5.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Nachanon_Vetjasit(a)hotmail.com
Classification: Unclassified
Created attachment 41094
--> http://bugs.winehq.org/attachment.cgi?id=41094
WINE 1.5.6 +relay,+seh,+tid
When started DK's I Love Science (.wine/drive_c/Program Files/DK Multimedia/I
Love Science!/ilovesci.exe), instead of launch screen popping up,
an error message was displayed:
"Please put the I Love Science! CD in a CD drive"
[Retry][Quit]
Clicking "Retry" will make the dialog disappear, then it appeared back almost
instantly. Clicking "Quit" will simply close the program.
I Love Science's CD was mounted at drive D:
Tested with WINE's Windows version 98.
I Love Science! is a Win16 application and supports Windows 3.x.
WINE: wine-1.5.6 source distribution.
System: Debian GNU/Linux 5.0 "Lenny" i386 (Intel Pentium 4 2.66GHz)
--
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=31418
Bug #: 31418
Summary: IE HTTPS Fails
Product: Wine
Version: 1.5.10
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fredrick.ward(a)gmail.com
Classification: Unclassified
Attempted install of IE8 under ubuntu 12.04. Pages open, but secure pages will.
Attempted to use wininet and winhttp respectively and neither resolved the
issue. install of crypt32 gets rid of error but then page cannot load
--
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=8365
--- Comment #32 from Austin English <austinenglish(a)gmail.com> ---
This is your friendly reminder that there has been no bug activity for over a
year. Is this still an issue in current (1.7.51 or newer) 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=37130
Bug ID: 37130
Summary: Clang Static Analyzer: Memory Leak
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies a potential memory leak
File: libs/wpp/ppl.yy.c
Location: line 4475, column 1
Description: Potential memory leak
static void macro_add_arg(int last)
{
..
if(last || mep->args[mep->nargs-1][0])
{
yy_push_state(pp_macexp);
push_buffer(NULL, NULL, NULL, last ? 2 : 1);
ppy__scan_string(mep->args[mep->nargs-1]);
//Clang: Calling 'ppy__scan_string'
//Clang: Returned allocated memory
}
//Clang: Potential memory leak
}
The pyy__scan_string function has a non-used return value. Calling this
function will anyway make the malloc() function return the value, and after it
is called, memory must be freed.
Let's see how the call of the pyy__scan_string function leads to calling
malloc.
YY_BUFFER_STATE ppy__scan_string (yyconst char * yystr )
{
return ppy__scan_bytes(yystr,strlen(yystr) );
}
YY_BUFFER_STATE ppy__scan_bytes (yyconst char * yybytes,
yy_size_t _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
...
buf = (char *) ppy_alloc(n );
...
b = ppy__scan_buffer(buf,n );
...
return b;
}
YY_BUFFER_STATE ppy__scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
...
b=(YY_BUFFER_STATE) ppy_alloc(sizeof(struct yy_buffer_state));
...
return b;
}
void *ppy_alloc (yy_size_t size )
{
return (void *) malloc( size );
}
--
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=36853
Bug ID: 36853
Summary: WINE should detect the presence of the window manager.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: carlo.bramix(a)libero.it
Created attachment 48943
--> http://bugs.winehq.org/attachment.cgi?id=48943
Screenshot, missing decorations.
In my private, ubuntu based, linux distribution, I installed the strict minimun
amount of packages, required for running just WINE and applications for Windows
with few megabytes.
I have not installed a window manager.
When running applications, it will happen that the decorations of the windows
won't be displayed if the window manager is enabled to draw or control them.
See the attached screenshot with winecfg running as an example.
The presence of the window manager should be detected and, if it is not
available, the two options for such purpose should be always grayed and the
function must be disabled automatically if it's enabled.
--
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=37131
Bug ID: 37131
Summary: Clang Static Analyzer: Division by zero
Product: Wine
Version: 1.7.22
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: lukebenes(a)hotmail.com
Clang Static Analyzer identifies Division by zero
File: dlls/winex11.drv/palette.c
Location: line 601, column 43
Description: Division by zero
#define NB_RESERVED_COLORS 20
...
static void X11DRV_PALETTE_FillDefaultColors(....)
{
...
int i = 0, idx = 0;
int red, no_r, inc_r;
...
if (palette_size <= NB_RESERVED_COLORS)
return;
while (i*i*i < (palette_size - NB_RESERVED_COLORS)) i++;
no_r = no_g = no_b = --i;
...
inc_r = (255 - NB_COLORCUBE_START_INDEX)/no_r;
//Clang: Division by zero
...
}
The code will continue executing if the palette_size variable is larger than or
equal to 21. With the value 21, the 'i' variable will be first incremented by
one and then decremented by one. As a result, the 'i' variable will remain
equal to zero, which will cause the division-by-zero 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.
http://bugs.winehq.org/show_bug.cgi?id=35696
Bug ID: 35696
Summary: [Japanese Font]Wine default fonts replacements for MS
fonts are not beautiful.
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: fonts
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
This is not enough to be called a bug.
However,many or almost all Japanese wine user complain that the Ume fonts are
not beautiful and download the MS Mincho font.
I think this is because wine does not use system font.
(such as Takao Mincho in Ubnutu,Hiragino in OSX).
--
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=35699
Bug ID: 35699
Summary: the location to start drawing is failed in list
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: matyapiro31(a)gmail.com
The list described in the attached file is rendered incorrectly.
(Maybe gdi mistaken point to start)
You cannot cause this without changing wine theme to
Light(http://aerilius.deviantart.com/art/Ubuntu-Light-Themes-12-10-32763197….
Thus,if you set it as no theme,it does not matter.
--
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=14055
Summary: Occasional wine crash during Heroes of Might and Magic
III gameplay
Product: Wine
Version: 1.0.0
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: riklaunim(a)gmail.com
Created an attachment (id=14275)
--> (http://bugs.winehq.org/attachment.cgi?id=14275)
Crash log
During gameplay the game may sometimes crash. It looks like the bug is related
to mp3/sound – “mp3dec.asi” (using OOS in wine). The log shows the
backtrace.
--
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=33975
Bug #: 33975
Summary: The Last Remnant stutters and stops rendering during
battles
Product: Wine
Version: 1.6-rc4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael.blumenkrantz(a)gmail.com
Classification: Unclassified
During battle sequences, there is a graphical effect which causes a fullscreen
blur for the player to activate a quick-time event and press a button. During
these effects, the game's video freezes for some time before resuming; the
audio continues playing as normal for the duration.
It's likely that this occurs both in the demo and the full game.
I am willing and able to provide any debug output on demand.
--
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=15689
Summary: Onenote 2007: no drawing.
Product: Wine
Version: 1.1.6
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Crazedhamster(a)hotmail.com
Created an attachment (id=16752)
--> (http://bugs.winehq.org/attachment.cgi?id=16752)
Backtrace
Clicking on the drawing tool causes it to go grey and disappear.
--
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=12804
Summary: winecfg: pressing enter in library override closes
winecfg
Product: Wine
Version: 0.9.60
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
CC: jeffzaroyko(a)gmail.com
Pressing enter when entering a dll override doesn't add the override. For those
of us that find mice an exercise in masochism and prefer keyboards, it's quite
a pain...
--
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=20194
Summary: Far Cry 2: major graphical glitches
Product: Wine
Version: 1.1.30
Platform: PC-x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeffz(a)jeffz.name
Created an attachment (id=23807)
--> (http://bugs.winehq.org/attachment.cgi?id=23807)
terminal output, first 5000 lines
The main menu loads, the level loading screen works fine. When starting a new
game, the screen is mostly black, part of the light from the sun is seen and
some other parts of the scenery creep into view for a moment here and there.
OpenGL renderer string: GeForce 8800 GTS/PCI/SSE2
OpenGL version string: 3.1.0 NVIDIA 190.18
--
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=8563
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #40 from super_man(a)post.com ---
Still fails.
This might be interesting quartz errror
fixme:quartz:AMGetErrorTextW (80004002,0x33da70,160) stub
wine 1.7.51
--
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=7991
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|unspecified |0.9.35.
--
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=6124
--- Comment #20 from Austin English <austinenglish(a)gmail.com> ---
Probably still an issue, Samuel, could you confirm in 1.7.51?
--
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=697
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |patch
CC| |austinenglish(a)gmail.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=9127
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |lukasz.wojnilowicz(a)gmail.co
| |m
--- Comment #60 from Austin English <austinenglish(a)gmail.com> ---
*** Bug 21152 has been marked as a duplicate of this bug. ***
--
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=9127
Bruno Jesus <00cpxxx(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |winebugs140(a)gmail.com
--- Comment #59 from Bruno Jesus <00cpxxx(a)gmail.com> ---
*** Bug 34722 has been marked as a duplicate of this bug. ***
--
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=30869
Bug #: 30869
Summary: Word 2010 UI uses wrong font size - leads to huge UI
elements
Product: Wine
Version: 1.5.5
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bunglehead(a)gmail.com
Classification: Unclassified
Whole Word UI including ribbon, window title and status bar is displayed with
huge font size, ribbon height is about 2 times larger than it should be.
Regression test shows that's a recently introduced problem from:
cca41207c161250d709ae3f8e0b002ac5c794de9 is the first bad commit
commit cca41207c161250d709ae3f8e0b002ac5c794de9
Author: Dmitry Timoshkov <dmitry(a)baikal.ru>
Date: Mon Jun 4 12:05:25 2012 +0900
gdi32: Fix parameters of some GDI stock fonts.
:040000 040000 78dfe59e027790bf6e171283d317c8214629312d
c1aee58caa05e216e80a12b4ecf15f799c715696 M dlls
--
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=7848
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |DUPLICATE
--- Comment #27 from Austin English <austinenglish(a)gmail.com> ---
(In reply to Rosanne DiMesio from comment #26)
> (In reply to Marcus Meissner from comment #23)
>
> >
> > also Wine should defer to DOSBOX these days, please retest with 1.4.
>
> I downloaded and tested the 4 apps from comment 4 in 1.7.50, and Wine
> successfully starts all of them in DOSBox svn r3932. My guess is that they
> probably won't work when run from Wine with DOSBox 0.74, which is what is
> still packaged by most distros.
>
> Duplicate of bug 18118 (or vice versa)?
Dupe.
*** This bug has been marked as a duplicate of bug 18118 ***
--
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=7387
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution|--- |DUPLICATE
--- Comment #30 from Austin English <austinenglish(a)gmail.com> ---
(In reply to Rosanne DiMesio from comment #29)
> (In reply to André H. from comment #17)
> > (In reply to comment #12)
>
> >
> > but we only start dosbox when
> > not running on plain x86 (e.g. wow64 setup or plain 64-bit).
>
> I just tested the version from the link in comment 13 on 32 bit openSUSE
> with Wine 1.7.50 and DOSBox svn r3932, and current Wine DOES start DOSBox in
> a pure 32 bit system. It works perfectly with Wine and the svn DOSBox, and
> probably doesn't with 0.74--same situation as bugs 7848, 15354, and 18118.
>
> We should probably pick one of these bugs to collect duplicates for the
> upstream issue that was fixed long ago in svn but which may be years away
> from an official release.
Makes sense. I think we should use bug 18118 for that, as it has the actual
info.
*** This bug has been marked as a duplicate of bug 18118 ***
--
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=9127
--- Comment #58 from mrdeathjr28(a)yahoo.es ---
(In reply to Bruno Jesus from comment #57)
> Can anyone share any demo game or other way to reproduce the issue? I read
> the comments and maybe I missed something but there is no download URL for
> any of the mentioned applications.
This games stay affected for this bug maybe this demos can help you
Bloodrayne 1
http://www.gamershell.com/download_856.shtml
Bloodrayne 2
http://www.gamershell.com/download_7530.shtml
Chaos Legion
http://www.gamershell.com/download_3459.shtml
--
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=26378
Summary: Can`t play a game
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: danirtoma(a)gmail.com
J can`t play the game 4story.
--
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=9127
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
URL| |http://www.gamershell.com/d
| |ownload_13220.shtml
--
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=9127
--- Comment #57 from Bruno Jesus <00cpxxx(a)gmail.com> ---
Can anyone share any demo game or other way to reproduce the issue? I read the
comments and maybe I missed something but there is no download URL for any of
the mentioned applications.
--
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=9127
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |oliver.deisenroth.foren@onl
| |ine.de
--- Comment #56 from Anastasius Focht <focht(a)gmx.net> ---
*** Bug 14066 has been marked as a duplicate of this bug. ***
--
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=39137
Bug ID: 39137
Summary: Adobe Primetime CDM: Implement mfplat.dll
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: neffi(a)neffi.net
Distribution: ---
There is a new CDM module available for (and bundled with) Firefox for Windows
(Vista or later, 32-bit only) developed by Adobe called the Primetime CDM. It
implements the necessary DRM for sites such as Netflix to function using HTML5
video, without other third-party modules such as Silverlight. Therefore, it
might be a good candidate for getting Netflix playback on non-Linux *nix such
as FreeBSD (the only other alternative would be Silverlight, which is also
currently broken, but which will be phased out eventually anyway).
If you install Firefox for Windows (version 38 or later) 32-bit version under a
wine prefix which is set to Windows Vista or later (I tested with Windows 7),
Firefox will automatically download and install this plugin when visiting a
site that requires it, such as Netflix (you may need to log in and click on a
video for this to happen).
Currently, Firefox will crash when opening a video with this plugin enabled,
with the following error:
wine: Call from 0x7b83d7a9 to unimplemented function
mfplat.dll.MFGetPluginControl, aborting
Tested using wine-staging 1.7.49 on Arch Linux and FreeBSD.
--
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=36938
Bug ID: 36938
Summary: Couldn't launch Reason needed MFPlat.DLL and
MFReadWrite.dll library
Product: Wine
Version: 1.7.22
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mikhail.v.gavrilov(a)gmail.com
$ wine .wine/drive_c/Program\ Files/Propellerhead/Reason/Reason.exe
err:module:import_dll Library MFPlat.DLL (which is needed by
L"Z:\\home\\mikhail\\.wine\\drive_c\\Program
Files\\Propellerhead\\Reason\\Reason.exe") not found
err:module:import_dll Library MFReadWrite.dll (which is needed by
L"Z:\\home\\mikhail\\.wine\\drive_c\\Program
Files\\Propellerhead\\Reason\\Reason.exe") not found
err:module:LdrInitializeThunk Main exe initialization for
L"Z:\\home\\mikhail\\.wine\\drive_c\\Program
Files\\Propellerhead\\Reason\\Reason.exe" failed, status c000013
--
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=35105
Bug #: 35105
Summary: Ableton Live 9.1 crashes, probably because of
IFileDialog2
Product: Wine
Version: 1.7.8
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: comdlg32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bique.alexandre(a)gmail.com
Classification: Unclassified
Created attachment 46825
--> http://bugs.winehq.org/attachment.cgi?id=46825
Log of the IFileDialog usage
When setting wine to >=Vista, Ableton Live 9.1 do not use GetOpenFile() anymore
but IFileDialog according to Microsoft recommendations.
With the GetOpenFile() code path, Ableton does not crash. But with the
IFileDialog code path Ableton does crash. I believe that wine's implementation
has different result values than the Windows one and that would explain why
Ableton crashes.
--
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=38343
Bug ID: 38343
Summary: Wine Internet Explorer crashes when visiting Adobe
website.
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mzs.112000(a)gmail.com
Distribution: ---
Created attachment 51187
--> https://bugs.winehq.org/attachment.cgi?id=51187
Backtrace file
The Wine Internet Explorer crashes, when I visit a web site.
I visited the Adobe Flash website, when it crashed.
The backtrace(attached) says it is an unimplemented function.
--
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=7387
--- Comment #29 from Rosanne DiMesio <dimesio(a)earthlink.net> ---
(In reply to André H. from comment #17)
> (In reply to comment #12)
>
> but we only start dosbox when
> not running on plain x86 (e.g. wow64 setup or plain 64-bit).
I just tested the version from the link in comment 13 on 32 bit openSUSE with
Wine 1.7.50 and DOSBox svn r3932, and current Wine DOES start DOSBox in a pure
32 bit system. It works perfectly with Wine and the svn DOSBox, and probably
doesn't with 0.74--same situation as bugs 7848, 15354, and 18118.
We should probably pick one of these bugs to collect duplicates for the
upstream issue that was fixed long ago in svn but which may be years away from
an official release.
--
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=39014
Bug ID: 39014
Summary: ddraw, o2jam having pink artifacts on wine 1.7.48
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: onte_jc(a)yahoo.com
Distribution: ---
ddraw, o2jam having pink artifacts on wine 1.7.48
you can try it out here
it calls for ddraw, it works fine, until you play one song, you will see pink
artifacts, make sure you enabled the 3d on the options
install .net 2.0 and 4.0
http://o2jam.intgamerz.net/index.php
--
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=7848
--- Comment #26 from Rosanne DiMesio <dimesio(a)earthlink.net> ---
(In reply to Marcus Meissner from comment #23)
>
> also Wine should defer to DOSBOX these days, please retest with 1.4.
I downloaded and tested the 4 apps from comment 4 in 1.7.50, and Wine
successfully starts all of them in DOSBox svn r3932. My guess is that they
probably won't work when run from Wine with DOSBox 0.74, which is what is still
packaged by most distros.
Duplicate of bug 18118 (or vice versa)?
--
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=29380
Bug #: 29380
Summary: sonic Generations: The detected configuration does not
match your current hardware
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eunbolt(a)gmail.com
Classification: Unclassified
Created attachment 38027
--> http://bugs.winehq.org/attachment.cgi?id=38027
Terminal output when starting Sonic Generations
First you Select what hardware you have in the sonic generations configuration
tool.
Then when you run sonic generations, it tells you "The detected configuration
does not match your current hardware"
--
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=36589
Bug ID: 36589
Summary: valgrind shows uninitialized memory use in
usp10/tests/usp10.c
Product: Wine
Version: 1.7.19
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: usp10
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==25656== Invalid read of size 2
==25656== at 0x4E326DE: _ItemizeInternal (usp10.c:1486)
==25656== by 0x4E33398: ScriptItemizeOpenType (usp10.c:1658)
==25656== by 0x4CB50D3: _test_items_ok (usp10.c:77)
==25656== by 0x4CB832D: test_ScriptItemize (usp10.c:596)
==25656== by 0x4CC7B59: func_usp10 (usp10.c:3201)
==25656== by 0x4CC8A3E: run_test (test.h:584)
==25656== by 0x4CC8E2C: main (test.h:654)
==25656== Address 0x49c46c0 is 0 bytes after a recently re-allocated block of
size 8 alloc'd
==25656== at 0x7BC4C6DF: notify_alloc (heap.c:255)
==25656== by 0x7BC50F23: RtlAllocateHeap (heap.c:1716)
==25656== by 0x4E306B6: heap_alloc_zero (usp10.c:719)
==25656== by 0x4E320D6: _ItemizeInternal (usp10.c:1375)
==25656== by 0x4E33398: ScriptItemizeOpenType (usp10.c:1658)
==25656== by 0x4CB50D3: _test_items_ok (usp10.c:77)
==25656== by 0x4CB832D: test_ScriptItemize (usp10.c:596)
==25656== by 0x4CC7B59: func_usp10 (usp10.c:3201)
==25656== by 0x4CC8A3E: run_test (test.h:584)
==25656== by 0x4CC8E2C: main (test.h:654)
==25656==
--
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=29880
Bug #: 29880
Summary: Sonic Generations: no audio
Product: Wine
Version: 1.4-rc2
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eunbolt(a)gmail.com
Classification: Unclassified
Created attachment 38852
--> http://bugs.winehq.org/attachment.cgi?id=38852
Terminal output while playing sonic generations
There is no sound when playing sonic generations
--
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=22978
Summary: SimCity2000: race condition causes crash in MCI during
startup
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hoehle(a)users.sourceforge.net
Created an attachment (id=28457)
--> (http://bugs.winehq.org/attachment.cgi?id=28457)
mci+winmm trace & crash backtrace
The attached log shows a crash that is triggered because the asynchronous
mciseq/mcimidi player is still attempting to open the device while the main
thread already successfully called MCI_CLOSE.
The mcimidi player does not implement proper locking. Unlike mciwave, its state
variable is not yet set to MCI_MODE_PLAY when opening the MIDI device, which
lets MCI_CLOSE not see something is busy playing.
Actually, even looking at mciwave, one can construct unfortunate sequences of
scheduling that would cause mciwave to hang in such a situation. So there's no
trivial patch simply moving
wmm->dwStatus = MCI_MODE_PLAY;
a couple of lines up.
The crash generally occurs when starting SimCity 2000 using
"wine 'C:\Program...\Game\simcity.exe'"
Curiously, "wine start simcity.exe" always works. As I said, it's a race
condition.
It seems like sometimes, the initialisation of WINMM and MIDI takes a long
time.
The bug is then triggered when MCI_CLOSE is called by the application.
MCI_CLOSE is called, among others, when clicking "exit" in the initial menu.
Often enough, the app crashes before showing this menu. IMHO, the fact that the
app calls MCI_CLOSE that early is triggered by another bug in Wine that AppDB
testers have mentioned every now and often, but never put to Bugzilla: SimCity
2000 starts fine (showing its logo) when using full screen mode, but needs a
resize or uniconify when using a virtual desktop: then presumably, the app
sends MCI_CLOSE to stop the music, causing or not a crash via the present race
condition.
BTW, since the crash occurs in the asynchronous MCI MIDI player, the app
nevertheless works...
This issue has nothing to do with the bug, presumably in the app, that "wine
simcity.exe" crashes whereas "wine 'c:\full\path\simcity.exe'" (should) work.
--
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=30170
Bug #: 30170
Summary: Afterburner 3D: screen not drawn properly (orm=fbo)
Product: Wine
Version: 1.4
Platform: x86
URL: http://digilander.iol.it/brodarodasoft2/AB3D_Setup.exe
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Classification: Unclassified
Created attachment 39373
--> http://bugs.winehq.org/attachment.cgi?id=39373
terminal output (orm=fbo)
Now that bug #8433 has been fixed, the game can get past the initial loading
screen without crashing, but the screen is not refreshing after the loading
screen is displayed. You can hear audio playing and various text is displayed
(overwritten) on the loading screen.
At some point menu options appear at the bottom of the screen and you can start
a new game by pressing <Enter>. You can hear audio from the game but the screen
is still showing the corrupted loading screen.
Setting OffscreenRenderingMode to backbuffer acts as a workaround. One of the
drawbacks of this setting is that the opening screens showing the graphic card
and input setup are displayed upside down. Once the game begins to load, the
screen is displayed normally.
Performance is abysmal when you start a new game but I don't know if this is
due to the backbuffer setting.
Fedora 16
Nvidia 250 / driver 290.10
X.Org X Server 1.11.4
--
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=36498
Bug ID: 36498
Summary: Project64: about page is black
Product: Wine
Version: 1.5.9
Hardware: x86
URL: http://www.pj64-emu.com/downloads/func-startdown/34/
OS: Linux
Status: NEW
Keywords: download, source
Severity: minor
Priority: P2
Component: ieframe
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: jacek(a)codeweavers.com
Follow up to bug 31332. Now there's not an IE window popup, but the page is
black.
wine-1.7.19-47-g704d169
--
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=36875
Bug ID: 36875
Summary: Incorrect check in PlayEnhMetaFileRecord() with case
== EMR_SCALEWINDOWEXTEX
Product: Wine
Version: 1.7.21
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: maksqwe1(a)ukr.net
enhmetafile.c 1419
if (!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->xDenom ||
!lpScaleWindowExtEx->xNum || !lpScaleWindowExtEx->yDenom) // <===
break;
--
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=39165
Bug ID: 39165
Summary: dlls/xaudio2_7 fails to compile (unconditional
dependency on OpenAL)
Product: Wine
Version: 1.7.50
Hardware: x86-64
OS: Linux
Status: NEW
Keywords: regression
Severity: blocker
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dmitry(a)baikal.ru
CC: aeikum(a)codeweavers.com
Regression SHA1: 1c643f39e2814dca59e284092aa3fb47f6280791
Distribution: ---
This is a regression, introduced by
commit 1c643f39e2814dca59e284092aa3fb47f6280791
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Tue Aug 25 14:28:37 2015 -0500
xaudio2: Implement device activation.
This adds a build-time dependency on openal, and a run-time dependency
on openal-soft's ALC_SOFT_loopback extension.
--
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=39077
Bug ID: 39077
Summary: o2jam doesnt close completely after exit the game, it
stays on the process
Product: Wine
Version: 20050930
Hardware: x86-64
OS: Windows
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: onte_jc(a)yahoo.com
game doesn't close on Windows 8-10
process stays even though you closed the game
http://o2jam.intgamerz.net
--
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=37865
Bug ID: 37865
Summary: echo/ not works as expected (like echo. and echo:)
Product: Wine
Version: 1.7.33
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: ho-rr-or(a)mail.ru
Distribution: ---
echo/ should work similar to echo. or echo:, but it prints slash to output.
echo. 1
echo: 1
echo/ 1
Windows:
1
1
1
Wine:
1
1
/ 1
--
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=29017
Bug #: 29017
Summary: 4th Dimension 6.5.4 crashes
Product: Wine
Version: 1.3.32
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sebastien.ramage(a)gmail.com
Classification: Unclassified
The app. crashes when trying to start "tools => Explorer" or in french "Outils
=> Explorateur'
wine reports : err:seh:raise_exception Exception frame is not in stack limits
=> unable to dispatch exception.
the app and a sample database can be download here :
http://www.janin-tools.com/download/wine/4th_Dimension_6.5.4.tar.gz
to reproduce the bug :
- download the archive and uncompress it
- launch 4D.exe
- choose "Démo" on the welcome dialog
- choose "Ouvrir une base existante" and select the test database (click on
"Autre..." if necessary)
- When database opened, choose "Outils" then "Explorateur" in the menu bar.
--
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=39111
Bug ID: 39111
Summary: Reinstalling Nvidia Physx adds path multiple times to
'HKLM\System\CurrentControlSet\Control\Session
Manager\Environment\Path'
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Steps to reproduce the problem:
1. create a new prefix, install Physx: 'winetricks physx'.
Open regedit and see that 'C:\Program Files\NVIDIA Corporation\PhysX\Common'
was added to the PATH registry key under
'HKLM\System\CurrentControlSet\Control\Session Manager\Environment', and it was
added only once.
2. start 'wine uninstaller', select Nvidia Physx entry and click <Modify...>.
In the Nvidia maintenance tool select <Repair>. It should report back that
Physx was (re)installed successfully.
3. open regedit and see that the same path was added again, so it is present
twice.
I tried this on Windows XP running in a VM, and reinstalling Physx added the
path only once.In Wine if you reinstall Physx multiple times, the path will
also be added multiple times.
wine-1.7.49-143-gcfbc37c
--
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=32527
Bug #: 32527
Summary: No Navigation in panel / Heredis 9
Product: Wine-gecko
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gecko-unknown
AssignedTo: jacek(a)codeweavers.com
ReportedBy: lebon.sylvain(a)gmail.com
Classification: Unclassified
The information panel in Heredis shows information about people. It should be
updated when another person is selected. It is not. Instead, a line is shown in
console:
fixme:ieframe:navigate_url Unsupported args (Flags 0x33f3c4:10; TargetFrameName
0x33f3b4:10)
fixme:ieframe:ClOleCommandTarget_Exec Unimplemented cmdid 67 of
CGID_ShellDocView
This happens with all wine versions up to 1.5.19.
It can be reproduced using Heredis 13 demo version found here:
http://www.heredis.com/en/heredis-pc/download-trial-pc/
--
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=9848
Summary: flipviewer fails to load
Product: Wine
Version: 0.9.46.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P3
Component: wine-advapi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eyecreate(a)gmail.com
Created an attachment (id=8321)
--> (http://bugs.winehq.org/attachment.cgi?id=8321)
Error log for flipviewer
The flipviewer(www.flipviewer.com) app installs and the library program works,
but the actual program fails. Backtrace log attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=37266
Bug ID: 37266
Summary: Text is unreadable
Product: Wine
Version: 1.7.26
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: scallegari(a)arces.unibo.it
In some applications providing text output, the output cannot be read because
the glyphs are mispaced and overlapped one to the other. Possibly this happens
when the text is monospaced.
To test
1) Install LTSpice this is an application given for free actually promoting the
use of Wine (http://www.linear.com/designtools/software/#LTspice)
2) Run the software
3) File->New Schematic
4) View->Spice Netlist
This only shows a couple of lines, because there is actually no schematic. But
typically the software can provide a lot of textual output that is rather
unreadable, making the software not very useful. The only work around is to
select the text, copy it into the clipboard, paste it into an editor to read.
--
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=39174
Bug ID: 39174
Summary: TP Link CPL administration tool crashed on :
unimplemented function wpcap.dll.pcap_parsesrcstr
Product: Wine
Version: 1.7.50
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: winelib
Assignee: wine-bugs(a)winehq.org
Reporter: mvidal0001(a)gmail.com
Distribution: ---
Created attachment 52207
--> https://bugs.winehq.org/attachment.cgi?id=52207
Error when launching the exe file with sudo
Hi
TP Link has an administration program which help to configure a CPL network (I
hope it's usefull if you consider the huge security lack of these stuffs).
In french only (I didn't find this product on main site)
http://www.tp-link.fr/support/download/?model=TL-PA4025PKIT&version=V1#tbl_b
This tool seems to use libpcap.
Running a simple user instance of this exe do not detect the CPL device.
Running a root installation of this exe give the following result :
PS: component wpcap should be added in the component list when filling a bug.
--
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=37451
Bug ID: 37451
Summary: python 3.1.1: test_test_decimal failed
Product: Wine
Version: 1.7.28
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: litimetal(a)gmail.com
Distribution: ---
Created attachment 49821
--> https://bugs.winehq.org/attachment.cgi?id=49821
terminal output.txt
0. Download python from
https://www.python.org/ftp/python/3.1.1/python-3.1.1.msi
sha1sum python-3.1.1.msi
dcf93cb7d5432aa6e47479351f3cbeefddb0bd62 python-3.1.1.msi
1. Install it
2. wine python.exe -m test.test_decimal
FAIL: test_create_decimal_from_float (__main__.DecimalPythonAPItests)
--
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=28186
Summary: uninstaller has no proper usage message
Product: Wine
Version: 1.3.26
Platform: x86
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fgouget(a)codeweavers.com
First uninstaller uses WINE_ERR() to tell the user he got the usage wrong (like
when he forgets a parameter). That's wrong as this is not a Wine error.
Second it never prints a usage message thus leaving the user guessing.
Finally if run in the wineconsole the user will see no output at all but that's
a somewhat independent issue (see bug 28185).
--
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=36300
Bug ID: 36300
Summary: valgrind shows an invalid read in
msxml3/tests/saxreader.c
Product: Wine
Version: 1.7.18
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: msxml3
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==30812== Invalid read of size 1
==30812== at 0x61B1797: update_position (saxreader.c:698)
==30812== by 0x61B43E1: libxmlStartElementNS (saxreader.c:1600)
==30812== by 0x648AAA5: ??? (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x648F5B0: xmlParseElement (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x648FC41: xmlParseDocument (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x61B6D79: internal_parseBuffer (saxreader.c:2552)
==30812== by 0x61B7193: internal_parse (saxreader.c:2637)
==30812== by 0x61B94B0: isaxxmlreader_parse (saxreader.c:3395)
==30812== by 0x4A7EEC3: test_saxreader (msxml2.h:18632)
==30812== by 0x4A963FA: func_saxreader (saxreader.c:5592)
==30812== by 0x4AAC96C: run_test (test.h:584)
==30812== by 0x4AACD5B: main (test.h:654)
==30812== Address 0x4550ef7 is 1 bytes before a block of size 4,096 alloc'd
==30812== at 0x4006B11: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==30812== by 0x64F5E6D: xmlBufCreate (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x6477115: ??? (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x64786F2: xmlSwitchEncoding (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x648FF25: xmlParseDocument (in /usr/lib/libxml2.so.2.9.1)
==30812== by 0x61B6D79: internal_parseBuffer (saxreader.c:2552)
==30812== by 0x61B7193: internal_parse (saxreader.c:2637)
==30812== by 0x61B94B0: isaxxmlreader_parse (saxreader.c:3395)
==30812== by 0x4A7EEC3: test_saxreader (msxml2.h:18632)
==30812== by 0x4A963FA: func_saxreader (saxreader.c:5592)
==30812== by 0x4AAC96C: run_test (test.h:584)
==30812== by 0x4AACD5B: main (test.h:654)
==30812==
--
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=38870
Bug ID: 38870
Summary: regsvr32: Flags specified after the DLL file are not
handled
Product: Wine
Version: 1.7.46
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: hugh.mcmaster(a)outlook.com
Distribution: ---
MediaInfo does not follow the usual regsvr32.exe <flags> <DLL> syntax.
During install it does this: regsvr32 "C:\Program
Files\MediaInfo\MediaInfo_InfoTip.dll" /s
This prints output to the terminal, even though the /s flag should invoke
Silent mode:
regsvr32: Failed to register DLL 'C:\Program
Files\MediaInfo\MediaInfo_InfoTip.dll'
Note that this failure is a different issue.
What makes this bug serious is the uninstall routine:
regsvr32 "C:\Programs Files\MediaInfo\MediaInfo_InfoTip.dll" /u /s
This prints the same error in the terminal:
regsvr32: Failed to register DLL 'C:\Program
Files\MediaInfo\MediaInfo_InfoTip.dll'
Note the issue here, though. Wine has attempted to register the DLL, not
unregister it.
MediaInfo is the only program that I currently know of using regsvr32 in this
way. There will be others.
Testers: be aware of ad-supported installer. Choose 'I do not accept' when
asked if you want to install 'One System Care'.
The bug is caused by Wine's handling of regsvr32 arguments. We process them in
a linear way, whereas Windows processes all flags first.
Using a dynamic array of char or int would probably fix the issue.
--
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=32213
Bug #: 32213
Summary: Tales of Pirates II Randomly Closes out.
Product: WineHQ Bugzilla
Version: unspecified
Platform: x86-64
URL: http://top2.igg.com/download/client.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: bugzilla-unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: SolisX007(a)yahoo.com
Classification: Unclassified
Created attachment 42487
--> http://bugs.winehq.org/attachment.cgi?id=42487
TalesofPiratesII
Tales of Pirates II Randomly Closes out on wine-1.5.17.
--
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=14915
Summary: FlushFileBuffers() fails on disk volume, sets
ERROR_INVALID_HANDLE when handle supposedly valid
Product: Wine
Version: 1.1.2
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vesselinpeev(a)hotmail.com
Ran under Wine, the following program receives ERROR_INVALID_HANDLE as a
Windows last error when the flushing call fails.
Note that if you are testing under Windows Vista, you need to run the program
with administrative privileges to be able to get the handle to the volume.
For brevity, I've omitted GetLastError() printing for failure cases except the
flushing one, but, needless to say, you may want to add them for full
correctness / error handling / safety, or do let me know and I'll happily add
these and re-post the code.
# include <windows.h>
# include <stdio.h>
# include <tchar.h>
int _tmain()
{
LPCTSTR volName = _T("\\\\.\\C:");
HANDLE hFile = CreateFile(volName, GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, 0,
OPEN_EXISTING, 0, 0);
if (hFile != INVALID_HANDLE_VALUE) {
_tprintf(_T("Opened volume %s\n"), volName);
SetLastError(0xdeadbeef); /* to make sure that it's really the next call
that sets the last error -- advice taken from Dmitry Timoshkov's comment at
http://bugs.winehq.org/show_bug.cgi?id=14855 */
if (FlushFileBuffers(hFile)) {
_tprintf(_T("File buffers flushed\n"));
}
else {
DWORD dwRet = GetLastError();
_ftprintf(stderr, _T("File buffers not flushed, GetLastError() returned
%lu"), dwRet);
if(dwRet == ERROR_INVALID_HANDLE) {
_ftprintf(stderr, _T(" (\"The handle is invalid\")"));
}
_ftprintf(stderr, ".\n");
}
}
else {
_ftprintf(stderr, _T("Could not open volume %s\n"), volName);
return -2;
}
if(! CloseHandle(hFile)) {
_ftprintf(stderr, _T("Could not close handle to volume %s\n"), volName);
return -3;
}
return 0;
}
--
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=38751
Bug ID: 38751
Summary: El Matador has rendering issues with anti-aliasing
enabled
Product: Wine
Version: 1.7.45
Hardware: x86
URL: http://www.gamershell.com/download_15088.shtml
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: stefan(a)codeweavers.com
Regression SHA1: 4e53faf77b34387f6e59946f71e57365f3f97e79
Distribution: ---
Created attachment 51671
--> https://bugs.winehq.org/attachment.cgi?id=51671
terminal output
When in-game anti-aliasing is enabled lots of the textures are missing or
rendered incorrectly.
AA can be enabled/disabled in the launcher (pc_matador.exe)
Regression introduced by
commit 4e53faf77b34387f6e59946f71e57365f3f97e79
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Tue Jun 9 22:48:14 2015 +0200
wined3d: Disable the depth stencil on multisample mismatch.
Nvidia GeForce 250 / binary drivers 340.76
--
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=19425
Summary: notepad: running notepad with a non-existent file and
choosing yes to create a new file should do so
immediately (appinstall)
Product: Wine
Version: 1.1.26
Platform: PC
OS/Version: Linux
Status: NEW
Keywords: download, source
Severity: trivial
Priority: P2
Component: programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
'notepad foobar.txt'
pops up a dialog telling you that the file does not exist, and asking if you'd
like to create it.
Yes - Opens notepad with foobar.txt, but doesn't create a new file.
No - Opens notepad with a blank new document.
Cancel - Closes notepad.
On windows, choosing yes immediately creates the new (empty) file.
--
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=34244
Bug #: 34244
Summary: DARK (2013) doesn't launches without native quartz
Product: Wine
Version: 1.7.0
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45569
--> http://bugs.winehq.org/attachment.cgi?id=45569
log
Needs native quartz.
--
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=38841
Bug ID: 38841
Summary: PunkBuster 'PnkBstrB.exe' initialization fails
(K32EnumProcessModules write to NULL pointer)
Product: Wine
Version: 1.7.46
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
PunkBuster bundled with the game APB Reloaded failed to initialize PnkBstrB.exe
on my system.
--- +relay output ---
...
0031:Call KERNEL32.K32EnumProcessModules(ffffffff,00000000,00100000,0076e9a8)
ret=0044ef87
0031:Call KERNEL32.UnhandledExceptionFilter(0076e4c8) ret=7bc99dad
...
--- end +relay output ---
+relay debug output shows that PnkBstrB.exe call
kernel32.K32EnumProcessModules() with a NULL pointer as parameter 'lphModule'
and a non-zero value in parameter 'cb'. The current Wine code does not check if
lphModule is NULL, it writes module information in lphModule until cb size is
not enough. Writing to NULL pointer raises the exception.
I first tried to put this code in the K32EnumProcessModules() function:
--- code ---
if(!lphModule)
{
cb = 0;
}
--- end code ---
With this code, the K32EnumProcessModules() call succeeds, but after that
PnkBstrB.exe tries to read at the NULL pointer and crashes anyway.
So I used this code instead:
--- code ---
if(!lphModule)
{
SetLastEror(ERROR_NOACCESS);
return FALSE;
}
--- end code ---
With that code, PnkBstrB.exe does not crash. It loads fine when the game
starts.
I could play the game 3 hours long without getting kicked, and I could play
again today. The pbcl.log file shows that everything PunkBuster related is
working.
--
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=28770
Bug #: 28770
Summary: Diablo 2 - sound works in menu, stops after starting
game (kind of regression)
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winmm&mci
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zajec5(a)gmail.com
Classification: Unclassified
I've noticed that with recent Wine I don't hear any sound in Diablo 2 when
playing my character. When I start Game.exe - sound is here during watching
into and as long as I'm in the menu. When I start playing (the map and my
character show up) it stops. After that I don't hear anything anymore.
Bisection has resulted in the following:
There are only 'skip'ped commits left to test.
The first bad commit could be any of:
901af51ea32f2d192a598808abab2d1b6a940773
be158e48ad8ee556941bd3f1ff94ca7116680d00
We cannot bisect more!
commit be158e48ad8ee556941bd3f1ff94ca7116680d00
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Mon Jul 11 08:28:30 2011 -0500
winmm: Implement waveOut* on top of MMDevAPI.
commit 901af51ea32f2d192a598808abab2d1b6a940773
Author: Andrew Eikum <aeikum(a)codeweavers.com>
Date: Mon Jul 11 08:28:24 2011 -0500
winmm: Remove driver implementation of waveOut*.
I'm using ALSA in Wine and Pulseaudio in my system.
I'm almost sure it's duplicate of #27908, but I was asked by Austin to create
new bugzilla report.
Right after starting Game.exe with affected Wine I get following fixmes:
fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels
fixme:alsa:AudioClient_GetMixFormat Don't know what to do with 10000 channels,
pretending there's only 2 channels
When starting real game (map and character, sounds goes away) nothing appears
in the console.
--
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=38672
Bug ID: 38672
Summary: valgrind shows uninitialized memory in set_mwm_hints()
Product: Wine
Version: 1.7.42
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: normal
Priority: P2
Component: opengl
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Fedora
Similar to bug 38593, shows up a lot of tests, this is in
comctl32/tests/listview.c:
../../../tools/runtest -q -P wine -T ../../.. -M comctl32.dll -p
comctl32_test.exe.so listview && touch listview.ok
==11813== Syscall param writev(vector[...]) points to uninitialised byte(s)
==11813== at 0x4F7A0F23: __writev_nocancel (in /usr/lib/libc-2.21.so)
==11813== by 0x5E69A28: ??? (in /usr/lib/libxcb.so.1.1.0)
==11813== by 0x5E69F07: ??? (in /usr/lib/libxcb.so.1.1.0)
==11813== by 0x5E69FAB: xcb_writev (in /usr/lib/libxcb.so.1.1.0)
==11813== by 0x5D59113: _XSend (in /usr/lib/libX11.so.6.3.0)
==11813== by 0x5D594B4: _XFlush (in /usr/lib/libX11.so.6.3.0)
==11813== by 0x5D379BB: XFlush (in /usr/lib/libX11.so.6.3.0)
==11813== by 0x5C92C82: X11DRV_WindowPosChanged (window.c:2349)
==11813== by 0x4D4AEC2: set_window_pos (winpos.c:2147)
==11813== by 0x4D4B15D: USER_SetWindowPos (winpos.c:2220)
==11813== by 0x4D4B454: SetWindowPos (winpos.c:2294)
==11813== by 0x47BCF6A: create_parent_window (listview.c:623)
==11813== by 0x47D4FB2: func_listview (listview.c:5770)
==11813== by 0x4833607: run_test (test.h:584)
==11813== by 0x4833A4F: main (test.h:666)
==11813== Address 0x58a9d90 is 40 bytes inside a block of size 16,384 alloc'd
==11813== at 0x4008D02: calloc (vg_replace_malloc.c:626)
==11813== by 0x5D473B4: XOpenDisplay (in /usr/lib/libX11.so.6.3.0)
==11813== by 0x5C98E17: x11drv_init_thread_data (x11drv_main.c:658)
==11813== by 0x5C8CCC1: thread_init_display (x11drv.h:347)
==11813== by 0x5C914D2: X11DRV_create_win_data (window.c:1796)
==11813== by 0x5C92264: X11DRV_WindowPosChanging (window.c:2155)
==11813== by 0x4D4AA16: set_window_pos (winpos.c:2062)
==11813== by 0x4D400D2: WIN_CreateWindowEx (win.c:1580)
==11813== by 0x4D40723: CreateWindowExA (win.c:1718)
==11813== by 0x47BCF50: create_parent_window (listview.c:617)
==11813== by 0x47D4FB2: func_listview (listview.c:5770)
==11813== by 0x4833607: run_test (test.h:584)
==11813== by 0x4833A4F: main (test.h:666)
==11813== Uninitialised value was created by a stack allocation
==11813== at 0x5C8EF95: update_net_wm_states (window.c:963)
==11813==
also in d3d9/d3d9ex, d3d9/device, ddraw/dsurface, gdi32/clipping,
imm32/imm32...
--
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=35030
Bug #: 35030
Summary: Steam install program crash at the end of the install
Product: Wine
Version: 1.7.7
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: legluondunet(a)free.fr
Classification: Unclassified
Created attachment 46692
--> http://bugs.winehq.org/attachment.cgi?id=46692
crash log
Hello,
when I launch Steam install program, it crashes at the end of the install, then
continue with downloading the whole client. It is not an important crash
because it doesn't stop the install. I joined the log of the crash.
Thank you for your help.
Config:
Ubuntu 13.10
wine 1.7.7 32 bits
AMD radeon 7850 with Ubuntu Catalyst drivers 13.101 version
Processor Intel i5-3570 3,4 Ghz
--
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=1151
--- Comment #26 from Sergio Callegari <scallegari(a)arces.unibo.it> ---
Created attachment 52260
--> https://bugs.winehq.org/attachment.cgi?id=52260
Log file with +richedit,+font
Here is the log file with the richedit and font channels. Compressed with xz.
--
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=1151
--- Comment #25 from Jactry Zeng <jactry92(a)gmail.com> ---
Hi all,
It seems bug of LTSPICE it is another bug of riched20.
And it was fixed by Huw:
commit 7a3c9889e38ede659230a66a167b82c024f0dc85
Author: Huw Davies <huw at codeweavers.com>
Date: Wed Jul 1 10:48:56 2015 +0100
riched20: Free the script cache when updating the default style.
Thanks Huw!
--
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=1151
--- Comment #24 from Jactry Zeng <jactry92(a)gmail.com> ---
(In reply to Sergio Callegari from comment #23)
> Seems fixed for LTSPICE with latest Wine (1.7.50)
Hi Sergio,
Could you upload a log of LTSPICE with +richedit,+font channel?
I'd like to know what font was used when you run LTSPICE.
I'm looking at another bug of proportional font
Thank you very much!
--
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=1151
--- Comment #23 from Sergio Callegari <scallegari(a)arces.unibo.it> ---
Seems fixed for LTSPICE with latest Wine (1.7.50)
--
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=1151
Jactry Zeng <jactry92(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jactry92(a)gmail.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=38004
Bug ID: 38004
Summary: Outlast crashes with unimplemented function
x3daudio1_7.dll.X3DAudioInitialize
Product: Wine
Version: 1.7.35
Hardware: x86-64
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Distribution: ---
Created attachment 50638
--> https://bugs.winehq.org/attachment.cgi?id=50638
log
Use native is a workaround.
--
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=8028
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #16 from super_man(a)post.com ---
fixed? I don't see the program doing anything crazy when pressed update.
wine 1.7.50(git)
--
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=35534
Bug ID: 35534
Summary: Oblivion: very loud/distorted/horrible collision
sounds
Product: Wine
Version: 1.7.10
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: benoit.sauvage(a)gmail.com
Classification: Unclassified
Reported also by other users:
-some mention can be fixed by making bUseSoftwareAudio3D=1 inside the
oblivion.ini, but that doesn't work for me.
-some mention trying older versions of wine engine, but that doesn't seem to
help my case either.
--
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=32589
Bug #: 32589
Summary: Microsoft Money 2005 Program Crash on Selecting
Program Dropdown Box
Product: Wine
Version: 1.5.19
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: junk_2010(a)live.co.uk
Classification: Unclassified
On both:
wine 1.4.1
wine 1.5.19
Running under 32 bit Ubuntu 12.04.1.
Microsoft Money 2005 (UK edition) ran after installing Internet Explorer 6
using winetricks.
Entry submitted to AppDB describing installation and running of the program.
One action always crashed the program.
Drop down navigation menu hangs application. This is the main "browser" drop
down box in the main menu bar. All other dropdown boxes seemed to work ok. The
program is perfectly usable without this menu bar, it is the program crash if
you do use it that is the issue.
Checked for terminal error message when "Drop down navigation menu hangs
application". It was always:
err:seh:setup_exception_record stack overflow 912 bytes in thread 0027 eip
7b858550 esp 01170fa0 stack 0x1170000-0x1171000-0x1270000
--
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=3919
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #21 from super_man(a)post.com ---
Doesn't work. This seem to be related
fixme:ddraw:ddraw7_Initialize Ignoring guid <guid-0x0001>.
1.7.50(git)
--
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=4123
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #10 from super_man(a)post.com ---
still an issue 1.7.50(git)
--
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=39151
Bug ID: 39151
Summary: Alone In The Dark - The new nightmare does not
install.
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: SolisX007(a)yahoo.com
Distribution: Slackware
Created attachment 52175
--> https://bugs.winehq.org/attachment.cgi?id=52175
Alone 4 backtrace
Hello Everyone,
Alone In The Dark - The new nightmare does not install. Segfaults backtrace
attached.
--
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=39182
Bug ID: 39182
Summary: Non-queued messages get activated during WaitMessage
Product: Wine
Version: 1.7.50
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: elpochodelagente(a)gmail.com
Distribution: ---
Created attachment 52226
--> https://bugs.winehq.org/attachment.cgi?id=52226
very small test
When an app that is sleeping in WaitMessage receives a non-queued message, it
should be awaken first. Then wine should wait it to reenter before dispatching
the non-queued message (wait until the app calls GetMessage or PeekMessage?).
For a broader discussion see "Does wine send window messages without waiting
apps to reenter userdll?" thread in the mailing list. Attaching a test that
shows the incorrect behavior.
--
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=7586
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #23 from super_man(a)post.com ---
The download is dead. The patch on other hand applies quite cleanly.
patching file dlls/ntdll/loader.c
Hunk #1 succeeded at 1747 (offset 331 lines).
Hunk #2 succeeded at 1771 with fuzz 2 (offset 333 lines).
wine 1.7.50(git)
--
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=7638
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #8 from super_man(a)post.com ---
the same 1.7.50(git) version used same as austin.
--
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=26688
Summary: Risen requires vcrun2005
Product: Wine
Version: 1.3.17
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msvcrt
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xvachon(a)gmail.com
The game outputs no missing functions and mscodescan reveals nothing either,
yet the game complains about vcrun2005. winetricks vcrun2005 works around it
xavier@xavier /wine/risen/drive_c/jeu/bin $ wine Risen.exe
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.OpenMP" (8.0.50727.762)
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT" (8.0.50727.762)
err:module:import_dll Library vcomp.dll (which is needed by
L"C:\\jeu\\bin\\Engine.dll") not found
err:module:import_dll Library Engine.dll (which is needed by
L"C:\\jeu\\bin\\Risen.exe") not found
err:module:import_dll Loading library Engine.dll (which is needed by
L"C:\\jeu\\bin\\Game.dll") failed (error c0000018).
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.VC80.CRT" (8.0.50727.762)
err:module:import_dll Library Game.dll (which is needed by
L"C:\\jeu\\bin\\Risen.exe") not found
err:module:import_dll Loading library Engine.dll (which is needed by
L"C:\\jeu\\bin\\Importer.dll") failed (error c0000018).
err:module:import_dll Loading library Game.dll (which is needed by
L"C:\\jeu\\bin\\Importer.dll") failed (error c0000018).
err:module:import_dll Library vcomp.dll (which is needed by
L"C:\\jeu\\bin\\Importer.dll") not found
err:module:import_dll Library Importer.dll (which is needed by
L"C:\\jeu\\bin\\Risen.exe") not found
err:module:LdrInitializeThunk Main exe initialization for
L"C:\\jeu\\bin\\Risen.exe" failed, status c0000135
--
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=38704
Bug ID: 38704
Summary: Crash During Update
Product: Wine
Version: 1.7.44
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gordan(a)bobich.net
Distribution: ---
Created attachment 51632
--> https://bugs.winehq.org/attachment.cgi?id=51632
Crash backtrace
Crash after WINE update in PlayOnLinux.
Running POL as a different user than the one logged in on the console using
sudo, and granting Xorg access using
xhost+SI:localuser:wineuser
where "wineuser" is the username I use for running wine applications.
--
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=38855
Bug ID: 38855
Summary: You have to specify a description for this bug.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: yakavlev.2001(a)gmail.com
Distribution: ---
Created attachment 51781
--> https://bugs.winehq.org/attachment.cgi?id=51781
Enter the path to the file on your computer
You have to specify a description for this bug.
--
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=38948
Bug ID: 38948
Summary: Witcher crushes when I play
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
Assignee: wine-bugs(a)winehq.org
Reporter: zel.aksoylar(a)gmail.com
Created attachment 51895
--> https://bugs.winehq.org/attachment.cgi?id=51895
bugreport for witcher
Hello.I downloaded witcher torrent and I am playing for two week or
something.Unfortunetly today while I play game has been crushed.When I open and
tryin to play again it crushes again at the same point and wine bug error pop
ups.Please help me I don't really understand about computers.
--
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=38617
Bug ID: 38617
Summary: GRID 2 requiers OLE
Product: Wine
Version: 1.7.40
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ole
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
Distribution: Fedora
Getting this in Terminal ( on Wine-Staging ):
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
MSDN:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms682521%28v=vs.85…
Possible Fix:
https://bbs.archlinux.org/viewtopic.php?id=189137
Quote from the link:
"EDIT/UPDATE:
installing internet explorer in the same wineprefix solved it for me."
Unfourtinetly author did not specify wich version he installed and using
installer or winetricks.
Hope this helps.
Hope this is not spam so you do not waste time.
Cheers.
--
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=38820
Bug ID: 38820
Summary: PunkBuster pbsetup 3.8 fails to download
Product: Wine
Version: 1.7.43
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: o.dierick(a)piezo-forte.be
Distribution: ---
Starting pbsetup in a clean 32bit wineprefix fails with the messagebox: "ERROR:
The attempt to download
'http://websec.evenbalance.com:6080/downloads/pbgame.htm' failed because the
connection timed out. Please make sure that you are properly connected to the
Internet and try updating again later."
Step to reproduce:
1. Create a new 32bit wineprefix.
2. Download pbsetup 3.8 from http://www.evenbalance.com/.
3. Unzip and copy pbsetup.exe to .wine/drive_c/.
4. cd to .wine/drive_c/ and run wine pbsetup.exe
5. Accept the licence agreement, click "ok" when pbsetup says it runs for the
first time.
6. pbsetup displays a progress bar.
What should happen:
pbsetup should download its game database and open the main window (empty at
first).
What actually happens:
pbsetup displays a dialog box with the aforementioned message. The program
closes when user clicks on the button.
Starting pbsetup with files copied from a wineprefix where it has run before
allows the program to start, but the error happens when clicking on "Update
PunkBuster".
Step to reproduce (continued):
6. click "add game" in the main window.
7. Select any game (APB Reloaded in my case).
8. Remove the path from the textbox and type C:\ in its place.
9. Click "add game".
What should happen:
The progress bar should move on while pbsetup downloads the files from the
server and ends with a successful update messagebox.
What actually happens:
Download doesn't start and pbsetup displays a dialog box with the
aforementioned message.
Additionnal info:
I get the error 99% of the time. Sometimes pbsetup manages to connect and
download. I'll roughly say that it works once every 4 hours or so.
I sent a ticket to evenbalance and they replied to me it was either a
firewall/antivirus blocking, or a temporary network issue.
However, I don't use any firewall/antivirus and I installed pbsetup in a
Windows Vista virtual machine on the same computer and it runs fine.
Here is the terminal output:
--- terminal output ---
~/.wine/drive_c$ wine pbsetup.exe
fixme:ole:RemUnknown_QueryInterface No interface for iid
{00000019-0000-0000-c000-000000000046}
--- end terminal output ---
My system is Debian Wheezy 64bit.
Wine is compiled from git in pure 32bit.
integrated iexplore can browse the web and even download the files that pbsetup
wants.
I have this problem since Wine 1.7.43. I'm now using Wine 1.7.46-1 from git.
The last time pbsetup ran successfully was with Wine 1.7.23. and I did not use
it again until 1.7.43 was released.
--
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=7585
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #65 from super_man(a)post.com ---
The installer had some crash, but also the game seem to have regressed. Can't
even start it with 1.7.50(git).
--
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=39067
Bug ID: 39067
Summary: Winetricks checksum vcrunredist 2013
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: leighrhume(a)gmail.com
Leighs-MacBook-Pro:tmp lhume$ openssl sha1 /Users/lhume/Desktop/vcredist_x86\
\(1\).exe
SHA1(/Users/lhume/Desktop/vcredist_x86 (1).exe)=
df7f0a73bfa077e483e51bfb97f5e2eceedfb6a3
>From Winetricks
WINETRICKS_VERSION=20141130
load_vcrun2013()
{
# http://www.microsoft.com/en-us/download/details.aspx?id=40784
w_download
http://download.microsoft.com/download/2/E/6/2E61CFA4-993B-4DD4-91DA-3737CD…
18f81495bc5e6b293c69c28b0ac088a96debbab2
--
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=39082
Bug ID: 39082
Summary: "winetricks d3dx9" installation failing.
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: cordaro.matthew(a)gmail.com
Distribution: ---
Created attachment 52072
--> https://bugs.winehq.org/attachment.cgi?id=52072
output of command, rerun of erroneous command for better description, proof of
lack of file necessary.
Install fails due to bad command.
rm and re-initialization of '.wine' directory does not solve.
Missing necessary file during installation.
--
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=39024
Bug ID: 39024
Summary: WINEARCH no longer creates a 32-bit wineprefix
properly
Product: Wine
Version: 1.7.47
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: susancragin(a)gmail.com
Distribution: ---
The program seems to default to a .wine64 prefix, even using the standard
WINEARCH=win32 command.
So WINEARCH=win32 wine-development winecfg
gets you a .wine64 prefix.
BUT if you add WINEPREFIX=~/.wine to the mix you get the 32-bit wineprefix but
then winecfg can't find it from the command line.
--
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=39089
Bug ID: 39089
Summary: Warframe doesn't work. It's fails after checking for
new content.
Product: Wine
Version: 1.7.3
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: alfrescopain24(a)gmail.com
Distribution: ---
Please someone help. This part has gotten too technical for me to understand.
Warframe should have worked by now but I can't get past the "checking for new
content screen" it takes forever to finish and at the end just says "Update
failed." It get's hung up on the line:
fixme:ntdll:NtIsProcessInJob stub: (nil) 0x2a4
and this line kepps on repeating and repeating.
--
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=38302
Bug ID: 38302
Summary: Crash on launching The Settlers 7 - Path of King
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
Distribution: ---
Created attachment 51135
--> https://bugs.winehq.org/attachment.cgi?id=51135
Image of exlprter.exe freeze when launching The Settlers 7 - Path of KIng.
Launching game, then uPlay opens, then I click the 'Play', and then whole wine
( and explorer.exe ) simply freezes. Only thing I can get is the screenshot.
--
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=38312
Bug ID: 38312
Summary: Crysis 2 black screen or other graphical corruption
during gameplay
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: linards.liepins(a)gmail.com
Distribution: ---
Created attachment 51150
--> https://bugs.winehq.org/attachment.cgi?id=51150
Crysis 2 in-game menu
Screenshot of in-game menu and gameplay and Terminal log in attachments.
--
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=39060
Bug ID: 39060
Summary: help
Product: WineHQ Bugzilla
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: bugzilla-unknown
Assignee: wine-bugs(a)winehq.org
Reporter: edybilla(a)gmail.com
Distribution: ---
Created attachment 52030
--> https://bugs.winehq.org/attachment.cgi?id=52030
install application not work
the program setup.exe has encountered a serious problem and needs to close.
the program setup.exe has encountered a serious problem and needs to close.
this can be caused by a problem in the program or a deficiency in wine
if this problem is not present under windows and has not been reported yet
--
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=17055
Summary: wine does not put wine executable path into desktop icon
Product: Wine
Version: 1.1.13
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: beagle7(a)shaw.ca
when installing an app, when wine installs a desktop icon (under KDE), it does
include the proper env WINEPREFIX, but it does not include the path to to wine
(e.g., /usr/local/1113/bin/wine) under which the app was installed. I.e., if I
do exactly this:
env WINEPREFIX=~/.wine-some-app /usr/local/wine-install-dir/wine
~/path/windows-app-installer.exe
the resulting desktop icon, in properties, would have under command, the
following:
env WINEPREFIX="~/.wine-app" wine "C:\Program Files\Path\app.exe"
or similar.
What I'd like it to have is:
env WINEPREFIX="~/.wine-app" /usr/local/wine-install-dir/wine "C:\Program
Files\Path\app.exe" (as appropriate)
--
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=33043
Bug #: 33043
Summary: Trying to install OCAD Trial Edition from
www.ocad.com/en/downloads/ocad-trial-edition using
Crossover
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ditchi56-bugzilla(a)yahoo.co.uk
Classification: Unclassified
Created attachment 43677
--> http://bugs.winehq.org/attachment.cgi?id=43677
Error trace produced by Crossover
Installation fails very quickly:
--
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=36851
Bug ID: 36851
Summary: The Wolf Among Us - crashes
Product: Wine
Version: 1.7.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: pepe(a)bloodkings.eu
Created attachment 48938
--> http://bugs.winehq.org/attachment.cgi?id=48938
backtrace from wine
This is the 2nd crash with this game. Nothing important, but its annoying.
It happened after 2 and 3 episode. In scene "Next time in The Wolf Among Us
will be:"
--
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=39112
Bug ID: 39112
Summary: Reaper Version 5.0 Crashes in Crossover
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: chipperfield.ian(a)virginmedia.com
Distribution: ---
Created attachment 52114
--> https://bugs.winehq.org/attachment.cgi?id=52114
Trace file
Reaper 5.0 crashes in Crossover
--
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=1429
Bruno Jesus <00cpxxx(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
--- Comment #15 from Bruno Jesus <00cpxxx(a)gmail.com> ---
Closing invalid bugs.
--
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=32985
Bug #: 32985
Summary: Need For Speed World Fatal error in gc
Product: Wine
Version: 1.5.23
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: levanchelidze(a)gmail.com
Classification: Unclassified
Created attachment 43576
--> http://bugs.winehq.org/attachment.cgi?id=43576
installation output
Installed the nfs world and when I tried to launche it it gave me and error
Fatal error in gc
http://i.imgur.com/OHF8GZN.jpg
--
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=38840
Bug ID: 38840
Summary: Mouselook doesn't "loop" properly in Unity game (Grow
Home) with CSMT patches enabled
Product: Wine
Version: 1.7.45
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
Assignee: wine-bugs(a)winehq.org
Reporter: axfelix(a)gmail.com
Distribution: ---
Hi folks,
I'm not sure if I should be reporting Wine-CSMT issues here, so forgive me for
that, but I'm fairly sure I've isolated this issue to the CSMT patches being
enabled -- when playing Grow Home, a game that doesn't have an appDB entry but
which was written in Unity (so that it could theoretically be natively released
on Linux, but more importantly should have middleware in common with many other
titles;
http://steamcommunity.com/app/323320/discussions/0/604941528477623359/), it
seems impossible to rotate the camera using mouselook beyond a certain narrow
field of view. The mouse cursor is captured (and not visible) when the game has
focus, but it feels distinctly like the camera is only able to be rotated as
far as though I were actually moving the mouse cursor across the width of the
window (which in my case is 1680x1050 fullscreen).
This may be a known issue -- I know I saw some discussion around mouselook
issues in Guild Wars II when using the CSMT patches -- but it seems a bit
different in this context. I don't think I have any other Unity games that use
mouselook so I can't test further, but I wouldn't be surprised if this was more
widespread.
--
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=37650
Bug ID: 37650
Summary: visualTopo unexpetted crash
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: fabrizio.toso63(a)gmail.com
Distribution: ---
Created attachment 50107
--> https://bugs.winehq.org/attachment.cgi?id=50107
backtrace
.
--
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=30756
Bug #: 30756
Summary: error, and white screens while playing Witcher:
Enhanced edition.
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: benboerma(a)yahoo.com
Classification: Unclassified
after going through loading screens my screen will turn white. I can still hear
music and gameplay, but the game itself is not visible. Also while playing
multiple times the game will come up with an Unknown error and make me have to
restart.
--
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=38246
Bug ID: 38246
Summary: Program won't run, cannot install some necessary files
it seems, trying to run skyrim on OS X
Product: Wine
Version: unspecified
Hardware: Other
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: qthomas27(a)hotmail.com
Created attachment 51056
--> https://bugs.winehq.org/attachment.cgi?id=51056
the text from the error message
Successfully downloaded skyrim on steam through wineskin, but it will not open,
also the specific wrapper is unable to run the winetricks "dlls" to provide the
necessary updates for running skyrim. This error message is what I receive when
trying to "play" skyrim through steam.
--
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=38860
Bug ID: 38860
Summary: nokia x manager,
NETFramework,Version=v4.0,Profile=Client" not
implemented
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: grendal74.geo(a)yahoo.com
Distribution: ---
[Tool][Windows][v1.1.0.0] Nokia X Manager [Root Nokia X, XL 100% working]
http://forum.xda-developers.com/showthread.php?t=2746370
Although .net 4.0 is installed
(http://portableapps.com/apps/utilities/dotnetinspector-portable says I have
all .net except 1.0) http://ibin.co/27OUwuOHkvyZ
, the app does not load
~/.wine/drive_c/Program Files (x86)/Nokia X Manager$ wine "Nokia X Manager.exe"
fixme:mscoree:parse_supported_runtime
sku=L".NETFramework,Version=v4.0,Profile=Client" not implemented
fixme:exec:SHELL_execute flags ignored: 0x00004100
fixme:exec:SHELL_execute flags ignored: 0x00000100
Can't find process Please Wait...
System.ComponentModel.Win32Exception: ApplicationName='adb.exe',
CommandLine='devices', CurrentDirectory='', Native error= File not found.
at System.Diagnostics.Process.Start_noshell
(System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process
process) [0x00000] in <filename unknown>:0
at System.Diagnostics.Process.Start_common
(System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process
process) [0x00000] in <filename unknown>:0
at System.Diagnostics.Process.Start () [0x00000] in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:Start ()
at Nokia_X_Manager.Form1.Form1_Load (System.Object sender, System.EventArgs
e) [0x00000] in <filename unknown>:0
at System.Windows.Forms.Form.OnLoad (System.EventArgs e) [0x00000] in
<filename unknown>:0
at System.Windows.Forms.Form.OnLoadInternal (System.EventArgs e) [0x00000] in
<filename unknown>:0
fixme:exec:SHELL_execute flags ignored: 0x00004100
Shutting down finalizer thread timed out.
~/.wine/drive_c/Program Files (x86)/Nokia X Manager$
--
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=38545
Bug ID: 38545
Summary: Calculate surface size is wrong sometimes
Product: Wine
Version: 1.7.42
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: isakov-sl(a)bk.ru
Distribution: ---
Bug 38178 is closed resolved by prohibit DXTn texture.
The real reason for the game crash is wrong sizes calculation in case of
compressed textures.
Even if we are not supporting DXTn compress/decompress we should allow the
application do this by own libraries and we must correctly calculate sizes in
those cases.
First what I see is the procedure calculate_dds_surface_size(..)
It adopted to block based textures but not to compressed textures
According to MSDN
https://msdn.microsoft.com/en-us/library/windows/desktop/bb205578(v=vs.85).…
the formula should be
max(1, ( (width + 3) / 4 ) ) x max(1, ( (height + 3) / 4 ) ) x 8(DXT1) or
16(DXT2-5)
But I see there are more caveats...
--
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=37445
Bug ID: 37445
Summary: Gamestudio: Missing DLL's
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: irrlight(a)yahoo.com
Distribution: ---
Created attachment 49818
--> https://bugs.winehq.org/attachment.cgi?id=49818
The output of wine when running WED and med
On the installation I clicked cancel on the second window (because the next
button not works). But when I try to run WED.EXE, med.exe it says that DLL's
are missing.
--
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=38118
Bug ID: 38118
Summary: Fallen Enchantress: text not rendered properly with
built-in usp10
Product: Wine
Version: 1.7.36
Hardware: x86
OS: Linux
Status: NEW
Severity: minor
Priority: P2
Component: usp10
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 50803
--> https://bugs.winehq.org/attachment.cgi?id=50803
screenshot
The spacing between letters is broken, some letters are too close each other,
others are too far away.
Installing corefonts/allfonts doesn't help, but using native usp10.dll is a
workaround.
On the attached screenshot the images on the right are showing how text is
displayed with native usp10.
Fedora 21
Nvidia binary drivers 340.76
--
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=32616
Bug #: 32616
Summary: No restart of Skype Portable of RPC
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mail(a)bennyott.info
Classification: Unclassified
If I want to start skype, I get no error messages at the beginning, but the
design looks totally wrong. As soon as I would log in, I get ne error and the
program can not close without a kill.
--
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=39100
Bug ID: 39100
Summary: winemenubuilder fails to extract icon from
steamsetup.exe
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: super_man(a)post.com
Distribution: ---
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 9
err:menubuilder:convert_to_native_icon error 0x88982F04 committing encoder
err:menubuilder:convert_to_native_icon error 0x80004005 getting frame 9
err:menubuilder:convert_to_native_icon error 0x88982F04 committing encoder
It has been like that for sometime already.
--
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=39131
Bug ID: 39131
Summary: Diablo II - Mouse wheel not working
Product: Wine
Version: 1.7.49
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: acid(a)tuxin.dk
Distribution: ---
Mouse wheel not working in-game (usually used for scrolling through active
skills).
On Windows 7 (and later), you have to run the game in Windows XP SP3
compatibility mode, maybe something similar could fix the issue in WINE.
I've tried setting Windows version to Windows XP, but with no luck.
--
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=35216
Bug ID: 35216
Summary: Age of empires II HD Steam version: does not correctly
close
Product: Wine
Version: 1.7.8
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: legluondunet(a)free.fr
Classification: Unclassified
Hello,
when I quit Age of empire II HD Steam version, Steam refuses to launch another
game because AOE Ii HD did not correctly close.
LGDN.
--
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=35457
Bug ID: 35457
Summary: Keyboard lag in Call of Duty 4 Modern Warfare 3
Product: Wine
Version: 1.7.11
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: wow.timur(a)yandex.ru
Classification: Unclassified
My keyboard doesn't working in this game (USB port, but simple keyboard with
ps2 port not working too).
--
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=37082
Bug ID: 37082
Summary: HOMMV will not start
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: nickburns(a)gmx.us
Created attachment 49284
--> http://bugs.winehq.org/attachment.cgi?id=49284
Complete error report
Starting game through steam (POL), game resets graphics resolution and goes to
black screen like the intros about to start.
Then Program error:
Unhandled exception: page fault on read access to 0x00000000 in 32-bit code
(0x00b218cc)
--
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=38854
Bug ID: 38854
Summary: Powerpoint 2007 crashes on save
Product: Wine
Version: 1.7.45
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: axfelix(a)gmail.com
Distribution: ---
Created attachment 51780
--> https://bugs.winehq.org/attachment.cgi?id=51780
stdout+stderr
Hi folks,
Possible regression here -- I notice this has only been reported as an issue
when setting Wine to Windows Vista or Windows 7 compatibility mode, and I have
it set to XP. Everything works OK otherwise but I get a crash on save and I
notice that wasn't happening a few Wine versions ago. Tested that I can still
use a File->Save dialog in other applications without trouble so I'm assuming
this is specific to Office 2007, if not to Powerpoint. stdout and stderr
attached.
--
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=36834
Bug ID: 36834
Summary: Multiple errors on launching GTA San Andreas on Linux
Debian on emulated desktop
Product: Wine
Version: 1.4.1
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: bugzillawinehq(a)gmail.com
Created attachment 48909
--> http://bugs.winehq.org/attachment.cgi?id=48909
Backrtrace
I tried to launch GTA San Andreas on my Debian 7.5 in emulated desktop
(800x600), it started, but graphics was horrible (there were only coloured
"stains") and when I tried to enter new game app got crashed. In attachment I
send a backtrace and wine output.
--
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=36836
Bug ID: 36836
Summary: Crash of Rome Total War Gold Edition upon opening of
file
Product: Wine
Version: unspecified
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: olivermacpherson999(a)gmail.com
Created attachment 48920
--> http://bugs.winehq.org/attachment.cgi?id=48920
Program Error details
When using crossover, and having fully installed RTW Gold, the app says it has
encountered an error and needs o close. I have simulated reboot of the app and
re-tried, but it has still crashed. Attached is the error details.
--
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=30608
Bug #: 30608
Summary: MK Arcade Kollection: Cannot launch game. Mouse
inresponsive in Windowed Mode.
Product: Wine
Version: 1.5.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linards.liepins(a)gmail.com
Classification: Unclassified
Created attachment 40060
--> http://bugs.winehq.org/attachment.cgi?id=40060
Error log with console output.
After finally fixed the DirectX error message issue by performing this:
sudo yum install xorg-x11-drv-catalyst-libs.i686
, I am not unable to launch game anyway ... the Wine window is shown, the mouse
is hidden and nothing happens ...
Attaching console log. Hopefully from that ton of fixme people could suggest
fix or try to debug ...
--
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=39059
Bug ID: 39059
Summary: NWN2ToolsetLauncher.exe dotnet20 Application crashes
with System.TypeLoadException
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: kernel32
Assignee: wine-bugs(a)winehq.org
Reporter: b.barwich(a)hotmail.com
Distribution: ---
Created attachment 52029
--> https://bugs.winehq.org/attachment.cgi?id=52029
NWN2ToolsetLauncher.exe Crash Report
The tool NWN2ToolsetLauncher.exe is recognized as dotnet20 Application.
I managed to install the .NET Framework successfully with "winetricks
dotnet20".
Now that I launched the application I see the first window and get right away
that exception.
When I try to run it with mono it gives me a mscvsm80.dll is missing exception.
My system is:
$ wine --version
wine-1.6.2
On a Debian 8.0 System
$ uname -a
Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt9-3~deb8u1 (2015-04-24) x86_64
GNU/Linux
--
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=37330
Bug ID: 37330
Summary: FOR command doesn't work in CMD
Product: Wine
Version: unspecified
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: vicmarcal(a)hotmail.com
The bug appears when testing:
wine cmd /C for /R %i in (*.exe) do %i
Seems there is a parsing error:
$ wine cmd /C for /R %i in (*.exe) do %i
syntax error near unexpected token `('
`wine cmd /C for /R %i in (*.exe) do %i'
The command "wine cmd /C for /R %i in (*.exe) do %i" exited with 1.
The problem seems with the parsing since if I create a batch file(script.bat)
with:
for /R %%i in (*.exe) do %%i
and afterwards issue a:
wine cmd script.bat
The script is correctly executed.
--
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=35743
Bug ID: 35743
Summary: Temple of Elemental Evil: does not start
Product: Wine
Version: 1.7.13
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: notvuvko(a)gmail.com
Created attachment 47735
--> http://bugs.winehq.org/attachment.cgi?id=47735
console log
I have GoG version of Temple of Elemental Evil and wine 1.7.13 on Arch Linux.
Game just doesn not start using frame buffer object for offscreen rendering.
When changed to backbuffer game runs but with very low fps.
--
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=38984
Bug ID: 38984
Summary: VirtualDub/FFInputDriver: crash when opening mkv, mp4,
etc
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: j-p-t(a)gmx.net
Distribution: Ubuntu
Created attachment 51936
--> https://bugs.winehq.org/attachment.cgi?id=51936
VirtualDub backtrace when opening MKV
VirtualDub instantly crashes when I try to open mkv or mp4 files.
VirtualDub 1.10.4
FFInputDriver 0.7
https://code.google.com/p/ffinputdriver/
--
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=306
Anastasius Focht <focht(a)gmx.net> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |focht(a)gmx.net
Hardware|Other |x86
Version|unspecified |20011004
Summary|Activeskin.ocx Unhandled |The Realm by Codemasters
|exception: page fault on |crashes in Activeskin.ocx
|read access |
OS|other |Linux
--- Comment #11 from Anastasius Focht <focht(a)gmx.net> ---
Hello folks,
refining summary to avoid people still subscribing to very old bugs due to
their generic summary.
Also fixing some fields.
Regards
--
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=6416
Chamaine <chamaine(a)startwrite.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |chamaine(a)startwrite.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=306
nscottbourland19 <nscottbourland19(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |nscottbourland19(a)gmail.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.
http://bugs.winehq.org/show_bug.cgi?id=32363
Bug #: 32363
Summary: Fonts are smoothed
Product: Wine
Version: 1.5.18
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sworddragon2(a)aol.com
Classification: Unclassified
After upgrading from Wine 1.5.17 to 1.5.18 the fonts are smoothed (even on a
new profile). I have already looked at "HKEY_CURRENT_USER\\Control
Panel\\Desktop\\FontSmoothing" but it is already set to 0.
If it is important: My system uses the ttf-mscorefonts-installer package with
some rules to look like the fonts of a Windows system.
--
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=4971
--- Comment #30 from Saulius K. <saulius2(a)gmail.com> ---
Created attachment 52197
--> https://bugs.winehq.org/attachment.cgi?id=52197
Startup window of "CorelDRAW Graphics Suite 12 Trial"
(In reply to super_man from comment #29)
> I cant. I used the download you gave here.
OK, I've just tested it on w7. It installed. I selected only "Corel DRAW"
from the options. Now startup window of "CorelDRAW Graphics Suite 12 Trial"
informs me about having 30 days left in my trial.
But in HTML part rendered below there is something wrong -- I see only half of
a single character at the very right side of the window.
So I need to click somewhere in the below white area and the press Enter. This
way CorelDRAW finally shows up.
I have IE8 on this w7 machine, FWIW.
--
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=4971
--- Comment #29 from super_man(a)post.com ---
I cant. I used the download you gave here.
--
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=4971
--- Comment #28 from Saulius K. <saulius2(a)gmail.com> ---
Maybe the server side has changed. Can you test the installer on Windows?
--
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=4971
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #27 from super_man(a)post.com ---
I don't get the return code of 1603
instead the installer seem to hang at some point doing nothing.
Last few lines
fixme:jscript:JScriptProperty_SetProperty Unimplemented property 70000001
fixme:jscript:JScriptProperty_SetProperty Unimplemented property 70000002
2015-08-27 08:41:51: basic_code_modules.cc:88: INFO: No module at 0xf77c7cf3
wine 1.7.50
--
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=39158
Bug ID: 39158
Summary: strange behaviour of WinForms components using MS .net
Product: Wine
Version: 1.7.50
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: mayth(a)arcor.de
Distribution: ---
Created attachment 52192
--> https://bugs.winehq.org/attachment.cgi?id=52192
executable of the demo
The bug was detected on a system as follows:
* Linux Mint 17.2 64-bit
* Wine 1.7.50 with a 32-bit environment
* orginal Microsoft .net 4.0 framework installed in Wine (using winetricks)
Attached is a simple .net program which is written in C# and consists of
several small source files.
The main windows of this program contains a component of type
System.Windows.Forms.StatusStrip with property GripStyle=Visible.
Moreover, the main window contains a component of type
System.Windows.Forms.ToolTip which is connected with some other GUI component
(which is a simple button in this demo).
The compiled exe file is attached. If it is executed on a Windows system, the
status strip shows a grip which can be used for resizing the window
(additionally to the actual borders of the window). Moreover, the tooltip
attached to the button works as expected.
If the same exe file is executed on a Linux system as described above (i.e.
Wine using the original MS .net 4.0 framework), the behaviour is different.
The status strip does not show an additional grip. However, the position where
the grip should be diplayed is sensible to mouse actions. But it does not cause
resizing of the window but some strange resizing effect on the other GUI
elements of the window (in this demo on the button). Moreover, the tooltip
attached to the button steals the focus from the window (this is in particular
a problem for text edit boxes as clicking on the box leads to the tool tip
stealing the focus from the edit box, so you cannot really enter text...). By
the way, the tool tip which is attached to the status strip element works fine
(but this is not a connected element of type Forms.ToolTip but is implemented
by the StatusStrip itself...).
The same executable using the same .net framework behaves in different ways,
depending on whether this is run on windows or on linux using wine. Therefore,
the reason for the difference must be found within 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=38982
Bug ID: 38982
Summary: cannot run any application anymore
Product: Wine
Version: 1.7.44
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wineserver
Assignee: wine-bugs(a)winehq.org
Reporter: weiliangcdt(a)gmail.com
Distribution: ---
Suddenly I can't open all windows application using wine under Ubuntu 14.04.
Below is some information that might needed. Feel free to ask me other
information you need to fix the bug. Thanks.
$ wineserver -v
wine-1.7.44
$ uname -a
Linux william 3.13.0-59-generic #98-Ubuntu SMP Fri Jul 24 21:05:26 UTC 2015
x86_64 x86_64 x86_64 GNU/Linux
$ cat /var/log/syslog | tail
Jul 28 14:51:45 william kernel: [ 89.810980] wineserver[3625]: segfault at
94bcd2d0 ip 0000000094bcd2d0 sp 0000000064d9afa0 error 14 in
ld-2.19.so[7f4294bcc000+23000]
Jul 28 14:52:47 william kernel: [ 151.889820] wineserver[3703]: segfault at
8c1492d0 ip 000000008c1492d0 sp 00000000097eb4a0 error 14 in
ld-2.19.so[7f3e8c148000+23000]
Jul 28 14:53:28 william kernel: [ 192.854880] wineserver[3721]: segfault at
720152d0 ip 00000000720152d0 sp 000000007eb591c0 error 14 in
ld-2.19.so[7f0272014000+23000]
Jul 28 14:57:11 william kernel: [ 416.298516] wineserver[4046]: segfault at
339792d0 ip 00000000339792d0 sp 00000000566be830 error 14 in
ld-2.19.so[7f4233978000+23000]
Jul 28 15:09:40 william kernel: [ 1165.678363] wine64-preloade[4237]: segfault
at 82d29210 ip 000000007c40000c sp 0000000082d29210 error 6 in
wine64-preloader[7c400000+3000]
--
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=27482
Summary: Tomb Raider III demo crashes in the launcher
Product: Wine
Version: 1.3.22
Platform: x86
URL: http://www.tombraiderchronicles.com/cgi-bin/dl03/dl.pl
?dm_tombraider3complete
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-ddraw
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gyebro69(a)gmail.com
Created an attachment (id=35145)
--> (http://bugs.winehq.org/attachment.cgi?id=35145)
terminal output
To reproduce the problem:
1) Install the demo as usual.
2) The launcher requires ie6 (winetricks ie6). Start the demo by tomb3.exe.
Click on <Start Free Trial button> ...a crash happens here.
The launcher started correctly in 1.3.21:
f3ae1b99f637c7a22546a7528edb0f9df2d57678 is the first bad commit
commit f3ae1b99f637c7a22546a7528edb0f9df2d57678
Author: Ričardas Barkauskas <rbarkauskas(a)codeweavers.com>
Date: Thu Jun 9 18:29:36 2011 +0300
ddraw: Separate IDirectDrawSurface vtable.
:040000 040000 375fc8c1597978349b5e1f9f8b418c6d5fa0a539
839c77ec396a4be43237f36c110c257a0db09131 M dlls
The patch can be reverted cleanly on wine-1.3.22-78-g4b2bfb4 and that fixed the
crash.
I couldn't add the author to the CC list.
Fedora 15
Nvidia GeForce 250 / driver 270.41.19
--
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=6955
--- Comment #190 from Béla Gyebrószki <gyebro69(a)gmail.com> ---
*** Bug 38013 has been marked as a duplicate of this bug. ***
--
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=3864
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #24 from super_man(a)post.com ---
"Installation succeful. Procedure not found." --> popup message
console output:
fixme:localspl:monitor_load L"redmon32.dll",InitializePrintMonitor2 not
implemented
wine 1.7.50
--
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=5977
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #20 from super_man(a)post.com ---
still an issue 1.7.50
--
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.
The address dslb-178-002-130-049.178.002.pools.vodafone-ip.de (178.2.130.49) failed too many login attempts (5) for
the account af(a)muc.de.
The login attempts occurred at these times:
2015-08-23 15:08:53 CDT
2015-08-23 15:09:28 CDT
2015-08-23 15:09:56 CDT
2015-08-23 15:11:14 CDT
2015-08-23 15:18:49 CDT
This IP will be able to log in again using this account at
2015-08-23 15:38 CDT.
https://bugs.winehq.org/show_bug.cgi?id=39141
Bug ID: 39141
Summary: Freezing completely when adjusting date/time
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: aapmak(a)gmail.com
Distribution: ---
I had a script running an ntpdate hourly and meanwhile, I intermittently had
this machine completely seizing up. To the point where only a tap on the reboot
button and/or powering off would work (which is rare in a Linux configuration).
The one element I could point out regarding this seizing up phenomenon was that
it would only occur when running Wine (typically, a game of some sort but not
limited to one individual title; it has happened with Banished, Heroes of the
Storm, Diablo III).
Last night it occured to me to simply remove that ntpdate script to see if that
would aleviate the problem; at first I suspected it was linked to the recent
shift from ASM to C in the Linux kernel but multiple kernel versions have
exhibited this phenomenon so that is unlikely. Again, the only constant seems
to be Wine.
Since removing the ntpdate script, the problem has not shown itself again. I
suspect there may be some issue with changing system date/time while Wine is
running. In particular, I suspect that any minor time adjustment to the past
might cause irregularities that end up causing very tight infinite loops or
something to that effect; since not even the keyboard responded when the
seizing up phenomenon occured.
This happened with multiple versions of time, all of which in the 1.7.4x
series.
--
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=2155
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #20 from super_man(a)post.com ---
still an issue 1.7.50
--
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=786
--- Comment #15 from André H. <nerv(a)dawncrow.de> ---
Still in wine 1.7.50.
--
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=29468
Bug #: 29468
Summary: not able to click anything on Star Wars Republic
Commando launcher
Product: Wine
Version: 1.3.35
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tommivs(a)gmail.com
Classification: Unclassified
When i am trying to click on anything on the launcher with a mouse or using tab
and enter the launcher doesn't register anything.
--
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=657
Johan Gardhage <johan.gardhage(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |johan.gardhage(a)gmail.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=786
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #14 from super_man(a)post.com ---
what's the status?
--
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=34094
Bug #: 34094
Summary: GRID 2 doesn't launch
Product: Wine
Version: 1.6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrey.goosev(a)gmail.com
Classification: Unclassified
Created attachment 45335
--> http://bugs.winehq.org/attachment.cgi?id=45335
log
Installed as wishes d3dx11_43.dll but after launch have an error window such
"Failed to create D3D device. Check that the latest graphics drivers are
installed."
from a terminal
fixme:d3d11:D3D11CreateDevice stub: adapter (nil), driver_type
D3D_DRIVER_TYPE_HARDWARE, swrast (nil), flags 0, feature_levels 3398792, levels
0x3, sdk_version 7, device 0x33e12c, feature_level 0x33dc94, context 0x33dc9c
game supports DX10 and 11.
--
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=38698
Bug ID: 38698
Summary: wineconsole: Altering line InsertMode with the Insert
key should not be permanent
Product: Wine
Version: 1.7.44
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: programs
Assignee: wine-bugs(a)winehq.org
Reporter: hugh.mcmaster(a)outlook.com
Distribution: ---
In wineconsole, pressing the Insert key changes the InsertMode setting for the
current line. When you press Return, the mode remains enabled.
On Windows, the mode reverts to the original mode.
The problem is in kernel32/editline.c. I've got a patch in progress to fix
this.
--
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=38988
Bug ID: 38988
Summary: when using MS .net there are wrong results (but no
errors)
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: mayth(a)arcor.de
Distribution: ---
Created attachment 51943
--> https://bugs.winehq.org/attachment.cgi?id=51943
executable showing the results of the code quoted above
The bug was detected on a system as follows:
* Linux Mint 17 64-bit
* Wine 1.6.2 with a 32-bit environment
* orginal Microsoft .net framework installed in Wine (irrelevant if V2 or V3.5
or V4, irrelevant if installed directly or using winetricks)
If a .net program written in C# and running on a system as described above uses
an explicit conversion from "decimal" data type to "float" data type, this
conversion sometimes gives wrong results. There is no error message at all, but
the result is completely wrong i.e. it is not just a matter of rounding.
However, the result is not always wrong, but only for certain numbers (see
below).
The same program executed on a Windows system or on a Linux system with Mono
works fine. Therefore, the program seems to call some functions within the
original MS .net framework which are not correctly executed by Wine.
The C# code which demonstrates the bug is as follows:
// example #1
decimal d = -0.594059405941m;
float f = (float) d;
Console.WriteLine ( "Value as decimal: " + d );
Console.WriteLine ( "Value converted to float: " + f );
// example #2
d = 0.605321507761m;
f = (float) d;
Console.WriteLine ( "Value as decimal: " + d );
Console.WriteLine ( "Value converted to float: " + f );
A compiled file is attached. Run it on a Windows system or on a Linux system
with Mono, and it works fine. Run it using Wine with the original MS .net
framework, and the bug will occur.
--
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=39117
Bug ID: 39117
Summary: Cross-compilation: Error in zconf.h included from
zlib.h included from http.c
Product: Wine
Version: 1.7.24
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wininet
Assignee: wine-bugs(a)winehq.org
Reporter: yugiohjcj(a)1s.fr
Distribution: ---
Hello,
I try to cross-compile wine-1.7.24 on Slackware 14.1:
$ make
i686-pc-mingw32-gcc -c -o http.o http.c -I. -I../../include -D__WINESRC__
-D_WINX32_ -D_REENTRANT -Wall -pipe \
-fno-strength-reduce -fno-strict-aliasing -Wdeclaration-after-statement
-Wempty-body \
-Wignored-qualifiers -Wstrict-prototypes -Wtype-limits
-Wunused-but-set-parameter -Wvla \
-Wwrite-strings -Wpointer-arith -Wlogical-op -gdwarf-2 -gstrict-dwarf
-fno-omit-frame-pointer \
-g -O2 -D_WIN32
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zconf.h:377:22: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'Bytef'
typedef Byte FAR Bytef;
^
/usr/i686-pc-mingw32/include/zconf.h:379:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'charf'
typedef char FAR charf;
^
/usr/i686-pc-mingw32/include/zconf.h:380:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'intf'
typedef int FAR intf;
^
/usr/i686-pc-mingw32/include/zconf.h:381:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'uIntf'
typedef uInt FAR uIntf;
^
/usr/i686-pc-mingw32/include/zconf.h:382:19: error: expected '=', ',', ';',
'asm' or '__attribute__' before 'uLongf'
typedef uLong FAR uLongf;
^
/usr/i686-pc-mingw32/include/zconf.h:386:23: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
typedef void FAR *voidpf;
^
In file included from http.c:53:0:
/usr/i686-pc-mingw32/include/zlib.h:80:17: error: expected declaration
specifiers or '...' before '*' token
typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
^
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zlib.h:81:30: error: unknown type name 'voidpf'
typedef void (*free_func) OF((voidpf opaque, voidpf address));
^
/usr/i686-pc-mingw32/include/zlib.h:81:30: error: unknown type name 'voidpf'
typedef void (*free_func) OF((voidpf opaque, voidpf address));
^
In file included from http.c:53:0:
/usr/i686-pc-mingw32/include/zlib.h:86:13: error: unknown type name 'Bytef'
z_const Bytef *next_in; /* next input byte */
^
/usr/i686-pc-mingw32/include/zlib.h:90:5: error: unknown type name 'Bytef'
Bytef *next_out; /* next output byte should be put there */
^
/usr/i686-pc-mingw32/include/zlib.h:95:31: error: expected ':', ',', ';', '}'
or '__attribute__' before '*' token
struct internal_state FAR *state; /* not visible by applications */
^
/usr/i686-pc-mingw32/include/zlib.h:106:22: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
typedef z_stream FAR *z_streamp;
^
/usr/i686-pc-mingw32/include/zlib.h:117:5: error: unknown type name 'Bytef'
Bytef *extra; /* pointer to extra field or Z_NULL if none */
^
/usr/i686-pc-mingw32/include/zlib.h:120:5: error: unknown type name 'Bytef'
Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
^
/usr/i686-pc-mingw32/include/zlib.h:122:5: error: unknown type name 'Bytef'
Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
^
/usr/i686-pc-mingw32/include/zlib.h:129:23: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
typedef gz_header FAR *gz_headerp;
^
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zlib.h:246:29: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
^
/usr/i686-pc-mingw32/include/zlib.h:353:32: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:392:29: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
^
/usr/i686-pc-mingw32/include/zlib.h:508:32: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateEnd OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:587:42: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:587:42: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT deflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:631:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:631:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:649:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateReset OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:660:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:681:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateTune OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:698:36: error: unknown type name
'z_streamp'
ZEXTERN uLong ZEXPORT deflateBound OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:713:36: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflatePending OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:728:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflatePrime OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:745:38: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:745:38: error: unknown type name
'gz_headerp'
ZEXTERN int ZEXPORT deflateSetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:819:42: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:819:42: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT inflateSetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:842:42: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:842:42: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT inflateGetDictionary OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:857:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateSync OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:876:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:876:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
^
/usr/i686-pc-mingw32/include/zlib.h:892:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateReset OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:902:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateReset2 OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:914:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflatePrime OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:935:34: error: unknown type name
'z_streamp'
ZEXTERN long ZEXPORT inflateMark OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:963:38: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:963:38: error: unknown type name
'gz_headerp'
ZEXTERN int ZEXPORT inflateGetHeader OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1025:29: error: expected ';', ',' or ')'
before '*' token
typedef unsigned (*in_func) OF((void FAR *,
^
/usr/i686-pc-mingw32/include/zlib.h:1027:25: error: expected ';', ',' or ')'
before '*' token
typedef int (*out_func) OF((void FAR *, unsigned char FAR *, unsigned));
^
/usr/i686-pc-mingw32/include/zlib.h:1029:33: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1029:33: error: unknown type name 'in_func'
ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1029:33: error: expected ';', ',' or ')'
before '*' token
ZEXTERN int ZEXPORT inflateBack OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1099:36: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateBackEnd OF((z_streamp strm));
^
/usr/i686-pc-mingw32/include/zlib.h:1160:30: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1160:30: error: unknown type name 'uLongf'
ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1160:30: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1174:31: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1174:31: error: unknown type name 'uLongf'
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1174:31: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1197:32: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1197:32: error: unknown type name 'uLongf'
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1197:32: error: unknown type name 'Bytef'
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
^
/usr/i686-pc-mingw32/include/zlib.h:1569:31: error: unknown type name 'Bytef'
ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
^
/usr/i686-pc-mingw32/include/zlib.h:1600:31: error: unknown type name 'Bytef'
ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
^
/usr/i686-pc-mingw32/include/zlib.h:1633:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateInit_ OF((z_streamp strm, int level,
^
/usr/i686-pc-mingw32/include/zlib.h:1635:34: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateInit_ OF((z_streamp strm,
^
/usr/i686-pc-mingw32/include/zlib.h:1637:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT deflateInit2_ OF((z_streamp strm, int level, int method,
^
/usr/i686-pc-mingw32/include/zlib.h:1641:35: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateInit2_ OF((z_streamp strm, int windowBits,
^
/usr/i686-pc-mingw32/include/zlib.h:1643:38: error: unknown type name
'z_streamp'
ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
^
/usr/i686-pc-mingw32/include/zlib.h:1643:38: error: expected ';', ',' or ')'
before '*' token
ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits,
^
In file included from http.c:53:0:
/usr/i686-pc-mingw32/include/zlib.h:1748:27: error: expected '=', ',', ';',
'asm' or '__attribute__' before '*' token
ZEXTERN const z_crc_t FAR * ZEXPORT get_crc_table OF((void));
^
In file included from /usr/i686-pc-mingw32/include/zlib.h:34:0,
from http.c:53:
/usr/i686-pc-mingw32/include/zlib.h:1749:49: error: expected ')' before 'int'
ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int));
^
http.c: In function 'gzip_read':
http.c:471:26: warning: assignment from incompatible pointer type
zstream->next_in = gzip_stream->buf+gzip_stream->buf_pos;
^
http.c:473:27: warning: assignment from incompatible pointer type
zstream->next_out = buf+ret_read;
^
http.c:475:9: warning: implicit declaration of function 'inflate'
[-Wimplicit-function-declaration]
zres = inflate(&gzip_stream->zstream, 0);
^
http.c:479:51: error: invalid operands to binary - (have 'int *' and 'BYTE *')
gzip_stream->buf_size -= zstream->next_in -
(gzip_stream->buf+gzip_stream->buf_pos);
^
http.c:480:48: error: invalid operands to binary - (have 'int *' and 'BYTE *')
gzip_stream->buf_pos = zstream->next_in-gzip_stream->buf;
^
http.c:484:13: warning: implicit declaration of function 'inflateEnd'
[-Wimplicit-function-declaration]
inflateEnd(zstream);
^
http.c: At top level:
http.c:526:8: error: unknown type name 'voidpf'
static voidpf wininet_zalloc(voidpf opaque, uInt items, uInt size)
^
http.c:526:30: error: unknown type name 'voidpf'
static voidpf wininet_zalloc(voidpf opaque, uInt items, uInt size)
^
http.c:531:27: error: unknown type name 'voidpf'
static void wininet_zfree(voidpf opaque, voidpf address)
^
http.c:531:42: error: unknown type name 'voidpf'
static void wininet_zfree(voidpf opaque, voidpf address)
^
http.c: In function 'init_gzip_stream':
http.c:546:25: error: 'z_stream' has no member named 'zalloc'
gzip_stream->zstream.zalloc = wininet_zalloc;
^
http.c:546:35: error: 'wininet_zalloc' undeclared (first use in this function)
gzip_stream->zstream.zalloc = wininet_zalloc;
^
http.c:546:35: note: each undeclared identifier is reported only once for each
function it appears in
http.c:547:25: error: 'z_stream' has no member named 'zfree'
gzip_stream->zstream.zfree = wininet_zfree;
^
http.c:547:34: error: 'wininet_zfree' undeclared (first use in this function)
gzip_stream->zstream.zfree = wininet_zfree;
^
http.c:549:5: warning: implicit declaration of function 'inflateInit2_'
[-Wimplicit-function-declaration]
zres = inflateInit2(&gzip_stream->zstream, is_gzip ? 0x1f : -15);
^
make: *** [http.o] Error 1
Any idea how to fix that?
Thank you.
Best regards.
--
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=39096
Bug ID: 39096
Summary: Nvidia Physx uninstaller completely removes PATH
registry key from
'HKLM\System\CurrentControlSet\Control\Session
Manager\Environment'
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, Installer
Severity: minor
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
When creating a new prefix, the registry key
'HKLM\System\CurrentControlSet\Control\Session Manager\Environment\PATH'
contains the paths
C:\windows\system32;C:\windows;C:\windows\system32\wbem
The Nvidia Physx installer adds
'C:\Program Files\NVIDIA Corporation\PhysX\Common'
to the already existing path.
When you remove Physx using 'wine uninstaller', the whole PATH registry key is
removed. The installer should only remove the 'C:\Program Files\NVIDIA
Corporation\PhysX\Common' path, which was added by the installer itself.
1. create a new wineprefix
2. winetricks physx (start regedit and see that the new path was added).
3. launch 'wine uninstaller' and select Physx to remove. After Physx was
removed open regedit and look for the PATH registry key under
'HKLM\System\CurrentControlSet\Control\Session Manager\Environment' ...it's
missing.
Plain terminal output doesn't show too much:
err:msi:msi_dialog_icon_control Failed to load bitmap L"Icon"
err:msi:msiobj_release Invalid handle!
err:msi:msi_dialog_create_controls no handler for element type L"Billboard"
err:msi:msiobj_release Invalid handle!
err:msi:msiobj_release Invalid handle!
wine-1.7.49-41-g36a39ce
--
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=37225
Bug ID: 37225
Summary: QQ 6.3: QQApp.exe Crashes after login
Product: Wine
Version: 1.7.25
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: penghao(a)linuxdeepin.com
QQ is a popular IM client in China.
1.Download from http://dldir1.qq.com/qqfile/qq/QQ6.3/12369/QQ6.3.exe
2.use "winetrick wenquanyi fakechinese" to fix the problems on Chinese fonts.
3.Start QQ from C:/Program Files/Tencent/QQ/Bin/QQ.exe, and QQ.exe will start
QQApp.exe at background.
4. An error dialog complains the security component of QQ is broken. close the
dialog
5. login with the folloing testing account:
account: 1469264807
Password: winedebug
6. QQ.exe begin to login, then QQApp.exe will crash.
NOTICE:
QQApp.exe has some kind of communication(may be RPC) with QQ.exe, QQApp.exe
can't be started directly.
Winedbg pop info window may not get backtrace in some environment when
QQApp.exe crashes.
QQApp.exe load lua engine to run scripts.
--
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=39028
Bug ID: 39028
Summary: Built-in iexplore crashes when opening forum/blog
entries on hup.hu (crash in get_frame_by_name("yterr")
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: mshtml
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51990
--> https://bugs.winehq.org/attachment.cgi?id=51990
terminal output
HUP (Hungarian Unix Portal) is a Hungarian IT portal (not exclusively for
Unix/Linux).
The main page loads properly but opening the forums "fórumok" or blog pages
"blogok" results in a crash shortly after the page was loaded.You can see the
most recent forum posts on the main page, clicking on any of those links also
triggers the crash.
wine iexplore http://hup.hu/
Native IE (whether it is IE6 or IE7) when installed with winetricks works
around the problem.
wine-1.7.48-100-ge3c6777
--
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=38153
Bug ID: 38153
Summary: Don't work Radmin viewer 3.5
Product: Wine
Version: 1.7.37
Hardware: x86-64
OS: Mac OS X
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: 7309397(a)live.ru
Os X Yosemmite 10.10.2
wine-devel @1.7.37_0
the main window the application is started. Attempt will be connected outputs
the login/password and after input the appendix is closed
---Cut---
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
err:tooltips:TOOLTIPS_WindowProc unknown msg 08d1 wp=00000000 lp=00000000
macdrv: Can't store handle for event queue fd
---Cut---
using the version wine-devel @1.7.30_0 everything works!
--Cut---
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make
sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the
winbind package of your distribution.
fixme:iphlpapi:NotifyAddrChange (Handle 0xecf540, overlapped 0xecf54c): stub
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
err:tooltips:TOOLTIPS_WindowProc unknown msg 08d1 wp=00000000 lp=00000000
---Cut---
--
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=39099
Bug ID: 39099
Summary: Wine's msiexec crashes when invoking Nvidia Physx
maintenance tool via 'wine uninstaller -> Modify...'
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: user32
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
CC: dmitry(a)baikal.ru
Regression SHA1: 268cdbbfb627dd64e527bb8603d9f8d8d788f0ae
Distribution: Fedora
Created attachment 52093
--> https://bugs.winehq.org/attachment.cgi?id=52093
terminal output
Steps to reproduce the problem:
1. create a new prefix, install Nvidia Physx: 'winetricks physx'
2. start 'wine uninstaller', select Nvidia Physx entry and click on the
<Modify...> button below --> msiexec crashes
Expected result: the Nvidia maintenance tool should appear, offering to
repair(reinstall) or remove Physx.
The crash was introduced by
commit 268cdbbfb627dd64e527bb8603d9f8d8d788f0ae
Author: Dmitry Timoshkov <dmitry(a)baikal.ru>
Date: Fri Jul 17 17:23:24 2015 +0800
user32: SystemParametersInfo(SPI_GETNONCLIENTMETRICS) should return real
font names.
Reverting the commit on current git or installing Tahoma fonts via winetricks
makes the crash go away for me.
wine-1.7.49-41-g36a39ce
Fedora 22 32-bit
--
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=39104
Bug ID: 39104
Summary: [win16] installing application cause "Not Enough Disk
Space" MessageBox
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: staal1978(a)gmail.com
Distribution: ---
Created attachment 52101
--> https://bugs.winehq.org/attachment.cgi?id=52101
amipro install bug
Installing AmiPro 3.1 (16-bit application) fails with a message box claiming
"not enough disk space".
Two previously abandoned bugs describing the same thing:
https://bugs.winehq.org/show_bug.cgi?id=29156https://bugs.winehq.org/show_bug.cgi?id=19655
To test, I don't know where to get current legal copies of this program. I got
old legal floppies but do not have a floppy drive so I had to get a copy at the
following location:
http://monkey-hole.co.uk/esa/win16/
WINEDEBUG=+relay WINEARCH=win32 WINEPREFIX=/home/jens/.amipro wine
/home/jens/Devel/Wine/amipro31/INSTALL.EXE 2>&1 | cat >
/home/jens/Devel/Wine/amipro31_install_bug.txt
--
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=12454
Summary: iriver plus 3 doesn't start
Product: Wine
Version: 0.9.58.
Platform: PC
URL: http://www.iriver.com/plus/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hewus.owns(a)gmail.com
iriver plus 3 installs, but does not start. I added mfc42u.dll to get rid of
missing dll messages, but it now ends here (0.9.59):
err:module:attach_process_dlls "iDeviceM.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\iriver\\iriver plus 3\\iPlus3.exe" failed, status c0000142
I tried yesterday on 0.9.58 and got this:
err:module:LdrInitializeThunk "iDeviceM.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
Files\\iriver\\iriver plus 3\\iPlus3.exe" failed, status c0000142
The errors are slightly different, if that helps at all. I am able to provide
more debugging if required.
Free download:
http://www.iriver.com.au/iriver/uploads/software/iplus3_setup_full.zip
--
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=36457
Bug ID: 36457
Summary: Hearts of Iron III Demo crashes with unimplemented
function vcomp.dll._vcomp_enter_critsect
Product: Wine
Version: 1.7.18
Hardware: x86
URL: http://www.gamefront.com/files/14193739/HeartsofIron3_
Demo.exe
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: vcomp
Assignee: wine-bugs(a)winehq.org
Reporter: andrey.goosev(a)gmail.com
Created attachment 48500
--> http://bugs.winehq.org/attachment.cgi?id=48500
log
Works with vcrun2005.
--
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=38977
Bug ID: 38977
Summary: gdi32: tabs are rendered as an rectangle in license
text of Quake III Arena demo installer
Product: Wine
Version: 1.7.47
Hardware: x86
URL: ftp://ftp.idsoftware.com/idstuff/quake3/win32/Q3ADemo.
exe
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: gdi32
Assignee: wine-bugs(a)winehq.org
Reporter: bernhardu(a)vr-web.de
CC: sagawa.aki+winebugs(a)gmail.com
Regression SHA1: 01280cff91896bf3cbd19fbc66d464162598768e
Distribution: Debian
Created attachment 51928
--> https://bugs.winehq.org/attachment.cgi?id=51928
Quake III Arena demo installer, license text with tabs as rectangle
While investigating for a different bug Quake III Arena demo installer I saw
that the tabulator characters in the license text are rendered as a black
rectangle.
Tests with older wine versions (<= 1.6) did not show this error.
A git bisect points to this commit:
01280cff91896bf3cbd19fbc66d464162598768e is the first bad commit
commit 01280cff91896bf3cbd19fbc66d464162598768e
Author: Akihiro Sagawa <sagawa.aki(a)gmail.com>
Date: Wed Jul 31 23:16:24 2013 +0900
Revert "gdi32: Use the default character when the glyph is missing.".
This reverts commit 15aa8daf6447b6f819dfc8de15db7db7645738ef.
It breaks the default character rendering in some bitmap fonts, e.g.
Fixedsys.
When adding the line removed by this commit to current head the glitch is not
visible anymore.
--
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=38435
Bug ID: 38435
Summary: Xfire 2.0 fails to start
Product: Wine
Version: 1.7.41
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: maiktapwagner(a)aol.com
Distribution: ---
Created attachment 51296
--> https://bugs.winehq.org/attachment.cgi?id=51296
Backtrace Slackware wine 1.7.41 - Command line output from launching from
installer (XP mode)
Hello everyone,
I just tried Xfire2 and had problems launching it. The first time I launched
it, I got an entry in the system tray but eventually got a Windows error
message in XML format. I have attached the output from the command line.
Next I tried starting it from the installation directory. This is the output I
got.
bash-4.2$ wine Xfire.exe
preloader: Warning: failed to reserve range 00010000-00110000
fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
preloader: Warning: failed to reserve range 00010000-00110000
fixme:system:SetProcessDPIAware stub!
Cleaned up temp file: C:/Program Files/Xfire2/Qpaths.ini
fixme:msvcrt:__clean_type_info_names_internal (0x6624b644) stub
fixme:msvcrt:__clean_type_info_names_internal (0x61249e2c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x6202f76c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x1013a9c4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x640f0d1c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x657bfca4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x6726b1fc) stub
bash-4.2$ fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub
fixme:system:SetProcessDPIAware stub!
fixme:font:get_outline_text_metrics failed to read full_nameW for font L"Ani"!
fixme:msg:pack_message msg 80 (WM_SETICON) not supported yet
fixme:msg:pack_message msg 80 (WM_SETICON) not supported yet
fixme:msvcrt:__clean_type_info_names_internal (0x1000847c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x640f0d1c) stub
fixme:msvcrt:__clean_type_info_names_internal (0x657bfca4) stub
fixme:msvcrt:__clean_type_info_names_internal (0x6726b1fc) stub
--
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=31895
Bug #: 31895
Summary: The main character is not rendered in Synaesthete
Product: Wine
Version: 1.5.14
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: viny_viny304(a)hotmail.com
Classification: Unclassified
Created attachment 41983
--> http://bugs.winehq.org/attachment.cgi?id=41983
SYnaesthete output log
When playing the synaesthete the main character is not rendered.
I am attaching the terminal output.
In this video (running on Windows) you can see the character that is not being
rendered on wine:
http://www.youtube.com/watch?v=5PfzgTkZndE
The game is free and can be downloaded here:
https://www.digipen.edu/?id=1170&download=383
--
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=38976
Bug ID: 38976
Summary: Hospital Tycoon crashes after the intro videos with
built-in d3dx9_36
Product: Wine
Version: 1.7.47
Hardware: x86
URL: http://store.steampowered.com/app/11590
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: directx-d3dx9
Assignee: wine-bugs(a)winehq.org
Reporter: gyebro69(a)gmail.com
Distribution: ---
Created attachment 51926
--> https://bugs.winehq.org/attachment.cgi?id=51926
terminal output
The game plays the first two intro videos properly then it crashes before the
main menu.
Native d3dx9_36 works around the crash.
There is no demo version available.
wine-1.7.47-196-g4e6e9a1
Fedora 22
nouveau/mesa git
--
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=39118
Bug ID: 39118
Summary: Office 2013 installer fails to start
Product: Wine
Version: 1.7.49
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: piotr.caban(a)gmail.com
Distribution: ---
Office 2013 installer fails to start showing message box with text:
"Installation language not supported"
This is a regression caused by:
e67a00b46694625e3c40386008affac42e7e3847 is the first bad commit
commit e67a00b46694625e3c40386008affac42e7e3847
Author: Dmitry Timoshkov <dmitry(a)baikal.ru>
Date: Tue Aug 18 15:25:40 2015 +0800
ntdll: Separate image relocation from NtMapViewOfSection.
:040000 040000 57d1c2330c02dd39d3ce5c8b2523c3d510fbc194
ca972ebe981cd75c1f88d4357637ad756bce66b9 M dlls
Reverting the patch in current wine lets the installer 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.
https://bugs.winehq.org/show_bug.cgi?id=38224
Bug ID: 38224
Summary: AcceptEx detaches the socket from its IO completion
port
Product: Wine
Version: 1.6.2
Hardware: x86
OS: Mac OS X
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: mterrisse(a)free.fr
Created attachment 51024
--> https://bugs.winehq.org/attachment.cgi?id=51024
Source + binary for BugAcceptEx
Hello,
On a server I have a listening socket
lListeningSocket := socket (PF_INET, SOCK_STREAM, IPPROTO_TCP);
CreateIoCompletionPort (lListeningSocket, lIoCompletionPort, 0, 0);
bind (lListeningSocket, PSockAddr (@lAddress)^, SizeOf (TSockAddrIn));
listen (lListeningSocket, 1);
and I prepare a socket for a new connection
lSocket := socket (PF_INET, SOCK_STREAM, IPPROTO_TCP);
CreateIoCompletionPort (lSocket, lIoCompletionPort, 0, 0);
then call AcceptEx
lPtrAcceptEx (lListeningSocket, lSocket, ...);
GetQueuedCompletionStatus (lIoCompletionPort, ...) signals completion for
AcceptEx for an incoming connection (so CreateIoCompletionPort
(lListeningSocket, ...) works fine), but never signals completion for events on
lSocket, not even a disconnection.
If I call again
CreateIoCompletionPort (lSocket, lIoCompletionPort, 0, 0);
after the completion of AcceptEx, it works fine.
So AcceptEx as detached lSocket from the IO completion port.
To help reproducting it, I created a little command line server BugAcceptEx.exe
Here attached is the code (Delphi) and the executable.
In a command prompt run
BugAcceptEx 1234
and in another command prompt
telnet localhost 1234
and press a key
Under Windows it works fine, under Mac + Wine the server signals the incoming
connection but never signals data nor disconnection.
Now if you do
BugAcceptEx 1235 WithPatch
and
telnet localhost 1235
it works fine
Thank you for your help.
Regards,
Michel Terrisse
--
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=37478
Bug ID: 37478
Summary: cmd doesn't handle "else if" correctly in all cases
Product: Wine
Version: 1.7.28
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: jbb.rose(a)yahoo.com
Distribution: ---
cmd.exe doesn't seem to handle "else if" constructs correctly in all
cases. This is making it difficult for me to run some complex build
scripts under wine.
Using this batch file:
C:\Users\bjj\Documents>type try.bat
@REM bjj test hack
@echo off
echo Args: "%1" "%2" "%3" "%4"
if /I "%1" == "DEBUG" (
echo It is debug
) else if /I "%1" == "RELEASE" (
echo It is release
) else if /I "%1" == "TRY" (
echo It is try
) else (
echo it is neither: "%1"
)
On Windows 7, all the branches seem to be handled correctly:
C:\Users\bjj\Documents>try foo
Args: "foo" "" "" ""
it is neither: "foo"
C:\Users\bjj\Documents>try DEBUG
Args: "DEBUG" "" "" ""
It is debug
C:\Users\bjj\Documents>try RELEASE
Args: "RELEASE" "" "" ""
It is release
C:\Users\bjj\Documents>try TRY
Args: "TRY" "" "" ""
It is try
However, on wine 1.7.28 the "else" branch is sometimes executed when
it shouldn't be:
W:\>try foo
Args: "foo" "" "" ""
it is neither: "foo"
W:\>try DEBUG
Args: "DEBUG" "" "" ""
It is debug
it is neither: "DEBUG"
W:\>try RELEASE
Args: "RELEASE" "" "" ""
It is release
it is neither: "RELEASE"
W:\>try TRY
Args: "TRY" "" "" ""
It is try
Judging from this example, it appears that the "else" clause is only skipped
if the final "if .. else if ..." clause is true. If one of the earlier
clasues is true, the final "else" is unexpectedly executed.
I haven't tried this batch file with earlier versions of wine.
Thanks,
Brian
--
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=39031
Bug ID: 39031
Summary: Schein demo needs vcomp110.dll._vcomp_master_begin
Product: Wine
Version: 1.7.48
Hardware: x86-64
URL: http://store.steampowered.com/app/321920/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: vcomp
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: Ubuntu
Follow up to bug 38613.
--
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=28444
Summary: zenilib 0.4.1.0 applications: crash when attempting to
use d3dx9 for rendering
Product: Wine
Version: 1.3.28
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: directx-d3dx9
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bazald(a)gmail.com
CC: wine-bugs(a)winehq.org
Created an attachment (id=36469)
--> (http://bugs.winehq.org/attachment.cgi?id=36469)
Output log
I'm responsible for the development of a "simple" game engine, zenilib. It
compiles and runs natively under Linux, so most code isn't doing anything too
platform specific. The Windows build runs magnificently in Linux when using
OpenGL for rendering, but something is preventing applications from starting at
all when attempting to use Direct3D9.
You can download the engine and supporting files here:
http://zenilib.com/download/#vs
To reproduce:
1. unzip zenilib_0.4.1.0.zip
2. unzip zenilib_0.4.1.0_support.zip
3. cd zenilib/config
4. cat zenilib.xml | sed 's/OpenGL/DX9/' > temp && mv temp zenilib.xml
3. cd ../bin
4. wine Application.exe
--
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=29081
Bug #: 29081
Summary: Drag and Drop: Duplicate entries in winamp playlist
window
Product: Wine
Version: unspecified
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: winex11.drv
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anwetli(a)hotmail.com
Classification: Unclassified
Created attachment 37475
--> http://bugs.winehq.org/attachment.cgi?id=37475
Wine log for xdnd
Operating System: Kubuntu 10.04 LTS with KDE 4.4.5 / i386 / nvidia grafics
driver
Bug is related to winamp, a windows music player (www.winamp.com). Other
applications may be affected by this bug.
Problem:
Every File drag and dropped to the playlist-window of winamp will duplicated.
It generates double entries for every file dropped to the playlist-window.
Version of wine:
This bug has been introduced since version 1.3x. In wine 1.2 everything is
fine.
Details:
If you drag drop a file to the main window of winamp, no duplicate entries will
be generated. But if you drop a file to the playlist-window (a window within
the winamp application), you will get two entries (duplicated). So it seems to
me that the bug is connected to how the drag drop code specifies the target
window.
Wine trace (WINEDEBUG=xdnd wine winamp.exe)
last lines in wine 1.2x:
----------------------------
trace:xdnd:X11DRV_XDND_DropEvent
trace:xdnd:X11DRV_XDND_SendDropFiles Sending WM_DROPFILES: hWnd(0x0x10056)
0x1356a4(L"E:\\x.mp3")
trace:xdnd:X11DRV_XDND_FreeDragDropOp
last lines in wine 1.3x:
----------------------------
trace:xdnd:X11DRV_XDND_DropEvent
trace:xdnd:X11DRV_XDND_SendDropFiles Sending WM_DROPFILES: hWnd(0x0x101e0)
0x1abe6c(L"Z:\\home\\angel\\Desktop\\x.mp3")
trace:xdnd:create_stream_from_map size 4096
trace:xdnd:XDNDDATAOBJECT_QueryGetData (0x68a29320, 0x7adbb4={.tymed=0x1,
.dwAspect=1, .cfFormat=49326}
trace:xdnd:XDNDDATAOBJECT_QueryGetData application didn't find
UniformResourceLocator
trace:xdnd:XDNDDATAOBJECT_QueryGetData (0x68a29320, 0x7adba0={.tymed=0x1,
.dwAspect=1, .cfFormat=15}
trace:xdnd:XDNDDATAOBJECT_QueryGetData application found CF_HDROP
trace:xdnd:XDNDDATAOBJECT_GetData (0x68a29320, 0x7adba0, 0x7adbd8)
trace:xdnd:XDNDDATAOBJECT_GetData application is looking for CF_HDROP
trace:xdnd:XDNDDATAOBJECT_QueryGetData (0x68a29320, 0x7adba0={.tymed=0x1,
.dwAspect=1, .cfFormat=15}
trace:xdnd:XDNDDATAOBJECT_QueryGetData application found CF_HDROP
trace:xdnd:X11DRV_XDND_DropEvent drop succeeded
trace:xdnd:X11DRV_XDND_FreeDragDropOp
It seems that with wine 1.3 new code for a better drag and drop functionality
has been introduced. But also leading to a bug with duplicate entries.
Maybe someone can fix this? Would be nice :-)
--
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=31856
Bug #: 31856
Summary: TextPad full screen view toggle broken
Product: Wine
Version: 1.5.14
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zelotech(a)yahoo.de
Classification: Unclassified
When you shift within the Shareware Text Editor Textpad5 (which generally is
excellent supported by Wine) to full screen view that works pretty well,
however when you return from full screen view to the normal view the window
header gets lost. Messages are not printed out.
--
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=23650
Summary: PowerPoint 2007 insensitive to changes in screen
resolution
Product: Wine
Version: 1.2-rc6
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.duelli(a)web.de
For presentations, you usually have to change your screen to the right
resolution such that the external monitor / projector can display your slides.
However, I found that when you start PowerPoint 2007 using wine 1.2rc7 or more
specifically the wine server before adopting the screen resolution, then
PowerPoint or at least parts of it will stick to the former screen resolution.
Steps to reproduce:
1. Start your computer with a certain screen resolution, say 1280x1024
2. Start up PowerPoint 2007 with wine.
(Everything is fine, presentation mode works as expected)
3. Change screen resolution
4. Activate presentation mode
-> The presentation will be rendered to fit in the old screen resolution and
there is no way to change this.
Possibly this also affects other applications.
--
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=39040
Bug ID: 39040
Summary: Excel 2010 enters installation configuration steps
then exits
Product: Wine
Version: 1.7.48
Hardware: x86
OS: Linux
Status: NEW
Severity: critical
Priority: P2
Component: ntdll
Assignee: wine-bugs(a)winehq.org
Reporter: caron(a)codeweavers.com
Distribution: ---
Excel 2010 launches but then enters an incomplete installation process. It
performs two attempts to complete installation and then closes with the error:
Microsoft Office cannot verify the license for this application. A repair
attempt failed or was canceled by the user. The application will now shut down.
1. Install Office 2010 in a clean prefix
* riched20 set to native
2. Launch Excel 2010
3. Excel begins to configure, claiming the install was incomplete
Launching Excel 2010 from Wine 1.7.48 works as expected, launching from:
e3c6777edda76f319e5c465faf6c20bb91ed9f17
Shows the above behavior. This is a regression.
Bisect results:
2a904d3bb379282831035e76bf9d30d347511bab is the first bad commit
commit 2a904d3bb379282831035e76bf9d30d347511bab
Author: Martin Storsjo <martin(a)martin.st>
Date: Thu Jul 23 10:36:06 2015 +0300
ntdll: Handle partial image load config structs.
:040000 040000 74e5a8c36c2def8aaa89125e318086358a88dbfc
ca6bfb2640b7e2be00b87fb9ebbdedc53225a588 M dlls
--
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=36163
Bug ID: 36163
Summary: valgrind shows an unitialized variable in
programs/cmd/tests/batch.c
Product: Wine
Version: 1.7.17
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
==18147== Conditional jump or move depends on uninitialised value(s)
==18147== at 0x401B9C5: real_length (sortkey.c:329)
==18147== by 0x401B9E3: wine_compare_string (sortkey.c:338)
==18147== by 0x7B852F44: CompareStringEx (locale.c:3016)
==18147== by 0x7B852D0A: CompareStringW (locale.c:2979)
==18147== by 0x4B1D493: WCMD_setshow_default (builtins.c:3316)
==18147== by 0x4B281B6: WCMD_execute (wcmdmain.c:1487)
==18147== by 0x4B29F36: WCMD_process_commands (wcmdmain.c:2294)
==18147== by 0x4B130E0: WCMD_batch (batch.c:95)
==18147== by 0x4B27185: WCMD_run_program (wcmdmain.c:1187)
==18147== by 0x4B28467: WCMD_execute (wcmdmain.c:1618)
==18147== by 0x4B29F36: WCMD_process_commands (wcmdmain.c:2294)
==18147== by 0x4B2ADC4: wmain (wcmdmain.c:2590)
==18147== by 0x4B2B328: __wine_spec_exe_wentry (exe_wentry.c:36)
==18147== by 0x7B864247: ??? (process.c:1045)
==18147== by 0x7B864394: start_process (process.c:1097)
==18147== by 0x7BC87087: ??? (signal_i386.c:2571)
==18147== by 0x7BC870D0: call_thread_func (signal_i386.c:2630)
==18147== by 0x7BC87065: ??? (signal_i386.c:2571)
==18147== by 0x7BC5A1C0: start_process (loader.c:2840)
==18147== by 0x401B03C: ??? (port.c:60)
==18147== Uninitialised value was created by a client request
==18147== at 0x7BC4C52C: mark_block_uninitialized (heap.c:209)
==18147== by 0x7BC4C697: initialize_block (heap.c:240)
==18147== by 0x7BC50FA3: RtlAllocateHeap (heap.c:1717)
==18147== by 0x4B2544E: heap_alloc (wcmdmain.c:444)
==18147== by 0x4B27671: WCMD_execute (wcmdmain.c:1310)
==18147== by 0x4B29F36: WCMD_process_commands (wcmdmain.c:2294)
==18147== by 0x4B130E0: WCMD_batch (batch.c:95)
==18147== by 0x4B27185: WCMD_run_program (wcmdmain.c:1187)
==18147== by 0x4B28467: WCMD_execute (wcmdmain.c:1618)
==18147== by 0x4B29F36: WCMD_process_commands (wcmdmain.c:2294)
==18147== by 0x4B2ADC4: wmain (wcmdmain.c:2590)
==18147== by 0x4B2B328: __wine_spec_exe_wentry (exe_wentry.c:36)
==18147== by 0x7B864247: ??? (process.c:1045)
==18147== by 0x7B864394: start_process (process.c:1097)
==18147== by 0x7BC87087: ??? (signal_i386.c:2571)
==18147== by 0x7BC870D0: call_thread_func (signal_i386.c:2630)
==18147== by 0x7BC87065: ??? (signal_i386.c:2571)
==18147== by 0x7BC5A1C0: start_process (loader.c:2840)
==18147== by 0x401B03C: ??? (port.c:60)
==18147==
--
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=39058
Bug ID: 39058
Summary: Schein demo needs vcomp110.dll._vcomp_flush
Product: Wine
Version: 1.7.49
Hardware: x86-64
URL: http://store.steampowered.com/app/321920/
OS: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: vcomp
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
CC: sebastian(a)fds-team.de
Distribution: Ubuntu
Follow up to bug 39031.
--
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=25225
Summary: MPLAB: toolbars getting reorganised every time when
the window minimized and restored in MPLAB
Product: Wine
Version: 1.0.1
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: theozo77(a)gmail.com
Created an attachment (id=32026)
--> (http://bugs.winehq.org/attachment.cgi?id=32026)
Screenshots before minimize and after restore the window
When the MPLAB minimized to the tray and restored, the toolbars organized into
one row, will change to one toolbar per one row. So 3 toolbars will use 3
lines, while the horizontal position of their stays unchanged.
The program is available here:
http://ww1.microchip.com/downloads/en/DeviceDoc/MPLAB_IDE_v8_60.zip
--
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=38752
Bug ID: 38752
Summary: Foobar2000 UPnP/DLNA media server hangs on exit
Product: Wine
Version: 1.7.40
Hardware: x86
URL: http://www.foobar2000.org/download
OS: Linux
Status: NEW
Keywords: download, regression
Severity: normal
Priority: P2
Component: winsock
Assignee: wine-bugs(a)winehq.org
Reporter: dimesio(a)earthlink.net
CC: 00cpxxx(a)gmail.com
Regression SHA1: 10f7265270f1ad4e4e1bfec6fb5f06e494d5f579
Distribution: SUSE
Reported by a user on the forum,
https://forum.winehq.org/viewtopic.php?f=8&t=24771&sid=5e3916fdef698de35fc4….
Setting version based on the regression test; this is still present in 1.7.45.
Regression test results:
10f7265270f1ad4e4e1bfec6fb5f06e494d5f579 is the first bad commit
commit 10f7265270f1ad4e4e1bfec6fb5f06e494d5f579
Author: Bruno Jesus <00cpxxx(a)gmail.com>
Date: Sun Mar 29 00:53:48 2015 -0300
ws2_32: Do not poll unbound descriptors.
:040000 040000 907503b73bae8c0caac8eb871aaa50fb92bbddde
d4296816b35282b354acb47587f79b792e299ae7 M dlls
The patch can't be reverted cleanly.
To reproduce:
Download and install Foobar2000 from
http://www.foobar2000.org/getfile/bd5fb1d8fd4d0b0d9d8510b394f8723a/foobar20….
Download the UPnP/DLNA component from
http://www.foobar2000.org/getcomponent/a770ee30b100186fc8e2fe243a383808/75d….
Install the plugin in Foobar2000 through File, Preferences, Components.
Restart Foobar2000, and check (under Library) that the UPnP media server is
started. If it isn't, start it.
Try to exit Foobar2000.
--
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=38441
Bug ID: 38441
Summary: valgrind shows a possible leak in comdlg32/itemdlg
Product: Wine
Version: 1.7.41
Hardware: x86
OS: Linux
Status: NEW
Keywords: download, source, testcase, valgrind
Severity: minor
Priority: P2
Component: comdlg32
Assignee: wine-bugs(a)winehq.org
Reporter: austinenglish(a)gmail.com
Distribution: ---
==6055== 8 bytes in 1 blocks are possibly lost in loss record 67 of 1,238
==6055== at 0x7BC49E0E: notify_alloc (heap.c:254)
==6055== by 0x7BC4E044: RtlAllocateHeap (heap.c:1715)
==6055== by 0x7B842BF7: HeapAlloc (heap.c:271)
==6055== by 0x7B842E45: GlobalAlloc (heap.c:377)
==6055== by 0x4E70894: OLEClipbrd_Initialize (clipboard.c:1756)
==6055== by 0x4EA50F4: OleInitialize (ole2.c:214)
==6055== by 0x4883FA9: func_itemdlg (itemdlg.c:2264)
==6055== by 0x488711A: run_test (test.h:584)
==6055== by 0x4887554: main (test.h:666)
==6055==
--
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=24601
Summary: L4D2: Client.dll always fails validation when
verifying game cache.
Product: Wine
Version: 1.3.4
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq.org(a)eternaldusk.com
Using the Steam "Verify Integrity of Game Cache" option produces the following
in the GameValidation.log file:
Starting validation of Left 4 Dead 2
Validation failure: w:\games\steam\steamapps\common\left 4 dead
2\left4dead2\bin\client.dll
Validation complete: 24850 Total Files, 1 Failed Validation
The file is then re-downloaded.
Rerunning the check produces the same results.
Deleting the file has no effect: it will be re-downloaded, and will fail the
validation check the next time you run it.
I noted that the message in the log showed "client.dll" as all lowercase, while
the filename is actually "Client.dll". I tried creating a link, but it still
failed the check. I tried renaming the DLL, and it still failed the check.
The game is installed on a BtrFS partition. I'm using Kubuntu 10.10 (AMD64),
kernel 2.6.35-22.
--
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=4811
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #14 from super_man(a)post.com ---
cannot QI from IXMLDOMDocument to IStream
wine 1.7.49
--
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=7831
Sebastian Lackner <sebastian(a)fds-team.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |sebastian(a)fds-team.de
Component|user32 |wineserver
Resolution|--- |DUPLICATE
--- Comment #19 from Sebastian Lackner <sebastian(a)fds-team.de> ---
(In reply to super_man from comment #18)
> I did try with wine-staging too. And it works with their wine. So if someone
> is willing to dig that patch what fixes this issue, it could point to
> another bug making this duplicate of something.
Good catch, the following patch fixes the bug:
https://github.com/wine-compholio/wine-staging/tree/master/patches/server-P…
This means its a duplicate of bug 28884 ("keyboard input does not work properly
for Sculptris"). I'll mark this one as duplicate of the newer bug report
because it already contains my analysis of the problem:
https://bugs.winehq.org/show_bug.cgi?id=28884#c9
*** This bug has been marked as a duplicate of bug 28884 ***
--
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=7831
--- Comment #18 from super_man(a)post.com ---
I did try with wine-staging too. And it works with their wine. So if someone is
willing to dig that patch what fixes this issue, it could point to another bug
making this duplicate of something.
--
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=7831
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #17 from super_man(a)post.com ---
Still an issue 1.7.49.
--
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=16722
Summary: Virtual RC Racing crashes on startup
Product: Wine
Version: 1.1.11
Platform: Other
URL: http://www.virtualrc.com
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: urlmon
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
https://answers.launchpad.net/ubuntu/+source/wine/+question/54580
complained that this game crashes on startup with access violation errors.
Sure enough, it does. A log shows some urlmon calls right before
the crash. "winetricks ie6" gets past this crash and on to a later
crash/hang.
--
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=38262
Bug ID: 38262
Summary: Warframe Update Fails!
Product: Wine
Version: 1.7.38
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: levanchelidze(a)gmail.com
Distribution: ---
Created attachment 51091
--> https://bugs.winehq.org/attachment.cgi?id=51091
terminal output
I created a 32-bit wine prefix and installed warframe on
But the launcher keeps crashing and shows this massage "update failed"
http://i.imgur.com/hFD9t1k.png
I will attache terminal output as well
--
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=18320
Summary: Approach: need flywheel (scroll wheel) or similar
support
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Hi All,
Oh now this is truly a pain in the neck (why the P2 priority). Lotus Approach
does not have scroll wheel support. In XP, you can load a utility called
"Flywheel" that will give you back your scroll wheel. Problem: flywheel does
not work in Wine.
Would you please enhance the mouse drives in Wine to support a function similar
to Flywheel to allow Approach to use the scroll wheel? Or, fix Wine to use
Flywheel?
Many thanks,
-T
Flywheel is "Abandonware" and is free. The author had a page stating so
several
years ago but has taken it down since. Here is a reference to its status on PC
World:
http://www.pcworld.com/article/117821/windows_tips_get_on_a_roll_with_freew…
You can download it from:
http://www.pcworld.com/downloads/file/fid,23737-order,1-page,1-c,alldownloa…
Or, I can eMail you my copy.
To register it: Go to Control Panel, Mouse, "Fly Wheel" tab, click on
"Registration Info".
registration name: I Am Free (note spaces)
registration number: 13601409
--
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=31254
Bug #: 31254
Summary: Wine crashes with Fireworks CS5 & Mouse Drag Issue
Product: Wine
Version: 1.5.9
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vladaman(a)gmail.com
Classification: Unclassified
Created attachment 41049
--> http://bugs.winehq.org/attachment.cgi?id=41049
STDErr Output
I am trying to run Adobe Fireworks CS5. The software runs but Mouse Drag does
not work. I can paint points yet I cannot draw squares etc. Any Mouse Drag
Function does not work.
Then I go to any element which has Slider (Like Brush Size Slider) and when I
select it Fireworks crashes.
See attached dump. Same issue was there with wine 1.4
--
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=5706
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #10 from super_man(a)post.com ---
Instant crash
wine 1.7.49
--
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=6847
super_man(a)post.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |super_man(a)post.com
--- Comment #31 from super_man(a)post.com ---
isnt this dupe of https://bugs.winehq.org/show_bug.cgi?id=4066
--
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=34758
Bug #: 34758
Summary: Unhandled exception: divide by zero in 32-bit code
(0x7eabe0ee). under unbuntu 12.04 wine 1.6
Product: Wine
Version: unspecified
Platform: x86-64
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Francis.Bougron(a)free.fr
Classification: Unclassified
Created attachment 46350
--> http://bugs.winehq.org/attachment.cgi?id=46350
Trace of debugger
This happens when starting "Microsoft money97 5.0.
I see bugs 33886 34451 300082.
It is probably the same thing.
--
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.