http://bugs.winehq.org/show_bug.cgi?id=2113
telefrancisco(a)lycos.es changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From telefrancisco(a)lycos.es 2004-18-06 14:37 -------
As of CVS of tday appears to run perfectly, so i leave this to resolved.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2292
------- Additional Comments From Oli1417(a)gmx.net 2004-18-06 14:29 -------
Created an attachment (id=615)
--> (http://bugs.winehq.org/attachment.cgi?id=615&action=view)
xst.debug.11.+loaddll+relay+file+ntdll+server.RelayExclude.with-comments.bz2
New trace of the problem with +relay, +file,+ntdll,+server and
"RelayExclude" =
"RtlEnterCriticalSection;RtlLeaveCriticalSection;RtlTryEnterCriticalSection;RtlDeleteCriticalSection;kernel32.InterlockedExchange;kernel32.GetCurrentThreadId;_EnterSysLevel;_LeaveSysLevel;LOCAL_Lock;LOCAL_Unlock;TlsGetValue;kernel32.GetLastError;kernel32.SetLastError;RtlAllocateHeap;RtlFreeHeap"
The trace contains *DEBUG MARK*s and comments. I think it in terms of a
trace it's pretty complete now and should allow a first diagnosis.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2298
------- Additional Comments From xavim(a)ubxlab.com 2004-18-06 13:27 -------
I have scanned dlls/kernel/process.c and the problem seems to be build_envp()
unconditionally "fixing" the child environment. I do not know, though, whether
modifying it would break a lot of things, and I am too ignorant to make a patch.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2298
------- Additional Comments From xavim(a)ubxlab.com 2004-18-06 13:18 -------
Created an attachment (id=614)
--> (http://bugs.winehq.org/attachment.cgi?id=614&action=view)
sources and exes that show this bug (parent.c, child.c)
I am attaching the sources included in the bug description, along with a
Makefile and the MinGW (under Win98SE) compiled binaries.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2298
Summary: wine messes up child process environment
Product: Wine
Version: 20040309
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xavim(a)ubxlab.com
CC: xavim(a)ubxlab.com
When a process calls CreateProcessA (or its C runtime library wrapper _spawn*)
to invoke a child process with a newly generated environment, wine modifies this
environment before passing it to the child.
Namely, it adds entries for HOME, COMSPEC, PATH, TEMP, TMP, windir and winsysdir
variables.
This behaviour is incompatible with Windows, as the following example shows:
<code filename="parent.c">
#include <process.h>
#include <stdio.h>
int
main(int argc, char *argv[])
{
char *child_env[] = {
"entry_0",
"entry_1",
"entry_2",
NULL
};
char cmdname[] = "child.exe";
printf("Parent started.\n");
_spawnle(_P_WAIT, cmdname, cmdname, NULL, child_env);
return 0;
}
</code>
<code filename="child.c">
#include <stdio.h>
#include <stdlib.h>
static void print_env(char **env);
int
main(int argc, char *argv[])
{
printf("Child started.\n");
printf("In child: ");
print_env(_environ);
return 0;
}
static void
print_env(char **env)
{
printf("env = [ ");
if (env != NULL) {
while (*env != NULL) {
printf("%s, ", *env);
++env;
}
}
printf("]\n");
}
</code>
After compiling these two programs with MinGW under Win98SE, we get the
following output:
Running in Win98 (SE):
E:\...>parent.exe
Parent started.
Child started.
In child: env = [ entry_0, entry_1, entry_2, ]
E:\...>
Running wine under Debian (unstable):
$ wine parent.exe
Parent started.
Child started.
In child: env = [ HOME=/home/javi, entry_0, entry_1, entry_2,
COMSPEC=C:\WINDOWS\SYSTEM\wcmd.exe,
PATH=C:\syntech\bin;C:\Windows;C:\Windows\system;X:\;X:\test;Y:\, TEMP=C:\TMP,
TMP=C:\TMP, windir=C:\WINDOWS, winsysdir=C:\WINDOWS\SYSTEM, SYSTEMROOT=C:\WINDOWS, ]
Wine exited with a successful status
$
$ wine --version
Wine 20040309
Wine exited with a successful status
$ uname -a
Linux pandora 2.4.22 #1 Sat Oct 11 23:23:24 CEST 2003 i686 GNU/Linux
$
This incompatibility is giving some problems because of the following:
Due to the old DOS restriction about command line length (I think it was about
max. 127 bytes), some command line tools used to pass arguments using the
environment. When this tools were ported to Win32, this behaviour remained.
Because of this behaviour, when wine messes up the environment, the child
process complains about "Bad arguments" and exits.
I am having this problem with a Win32 Toshiba toolchain for a microcontroller.
The C compiler is actually a driver that invokes child process to perform the
different compilation phases, and they fail for the aforementioned reason.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
------------- Begin Forwarded Message -------------
X-Spam-Status: No, hits=-4.9 required=4.0
Date: Thu, 17 Jun 2004 21:16:47 -0500
From: Andrew Jones <aijones2(a)bsu.edu>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5)
Gecko/20031013 Thunderbird/0.3
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: rsparapa(a)mcw.edu
Subject: Wine bug #1816 (Wine on Solaris x86)
X-OriginalArrivalTime: 18 Jun 2004 02:16:50.0635 (UTC)
FILETIME=[50AD39B0:01C454DA]
I saw that you submitted this bug, thanks to google.
http://bugs.winehq.com/show_bug.cgi?id=1816
I ran into the same problem compiling wine 20040615, the newest release.
In server/context_i386.c, I just commented out everything that used
GETREGS or GETFPREGS since it's only for error reporting. I don't know
enough about win32 to say whether error reporting is important here.
In server/ptrace.c, I #define'd PT_ATTACH and PT_DETACH to -1, since
they're not supported by Solaris either. I don't know how well this
will work, but it's better than the alternative of disabling the use of
ptrace() entirely, making win32 threading nonfunctional.
------------- End Forwarded Message -------------
Rodney Sparapani Medical College of Wisconsin
Sr. Biostatistician Patient Care & Outcomes Research
rsparapa(a)mcw.edu http://www.mcw.edu/pcor
Was 'Name That Tune' rigged? WWLD -- What Would Lombardi Do
26,27c26
< #include <errno.h>
<
---
> #include <errno.h>
30,31c29
< #endif
<
---
> #endif
34d31
<
37,38c34
< #endif
<
---
> #endif
68,69c64
< #endif
<
---
> #endif
72,73c67
< #endif
<
---
> #endif
76,77c70
< #endif
<
---
> #endif
247,249c240,241
< struct regs regs;
< /* who needs error checking, right? */
< /*if (ptrace( PTRACE_GETREGS, pid, (int) ®s, 0 ) == -1) goto error;*/
---
> struct regs regs;
> if (ptrace( PTRACE_GETREGS, pid, (int) ®s, 0 ) == -1) goto error;
283,286c275,276
< /* correct structure (the same as fsave/frstor) */
<
< /* errors are for people less confident than I */
< /*if (ptrace( PTRACE_GETFPREGS, pid, (int) &context->FloatSave, 0 ) == -1) goto error;*/
---
> /* correct structure (the same as fsave/frstor) */
> if (ptrace( PTRACE_GETFPREGS, pid, (int) &context->FloatSave, 0 ) == -1) goto error;
304,307c294,295
< /* need to preserve some registers */
<
< /* what was that I said about errors?*/
< /*if (ptrace( PTRACE_GETREGS, pid, (int) ®s, 0 ) == -1) goto error;*/
---
> /* need to preserve some registers */
> if (ptrace( PTRACE_GETREGS, pid, (int) ®s, 0 ) == -1) goto error;
333,335c321,322
< }
< /* ptrace() is horrible, ugly, and doesn't work on solaris anyway */
< /*if (ptrace( PTRACE_SETREGS, pid, (int) ®s, 0 ) == -1) goto error;*/
---
> }
> if (ptrace( PTRACE_SETREGS, pid, (int) ®s, 0 ) == -1) goto error;
344,347c331,332
< /* correct structure (the same as fsave/frstor) */
<
< /* see above */
< /*if (ptrace( PTRACE_SETFPREGS, pid, (int) &context->FloatSave, 0 ) == -1) goto error;*/
---
> /* correct structure (the same as fsave/frstor) */
> if (ptrace( PTRACE_SETFPREGS, pid, (int) &context->FloatSave, 0 ) == -1) goto error;
59,81c59,67
< #ifndef SOLARIS
< #ifndef HAVE_SYS_PTRACE_H
< #define PT_CONTINUE 0
< #define PT_ATTACH 1
< #define PT_DETACH 2
< #define PT_READ_D 3
< #define PT_WRITE_D 4
< #define PT_STEP 5
< /*This is a load of bullshit right here. Solaris has no ptrace.h, but ptrace() works for those things. (maybe)
< inline static int ptrace(int req, ...) { errno = EPERM; return -1;} */
< #endif /* HAVE_SYS_PTRACE_H */
< #endif /* SOLARIS */
<
< #ifdef SOLARIS
< #define PT_CONTINUE 7
< /* attach and detach are not supported in Solaris. */
< #define PT_ATTACH -1
< #define PT_DETACH -1
< #define PT_READ_D 2
< #define PT_WRITE_D 5
< #define PT_STEP 9
< /* these are from ptrace(3C), I think they're the same as FreeBSD */
< #endif /* SOLARIS */
---
> #ifndef HAVE_SYS_PTRACE_H
> #define PT_CONTINUE 0
> #define PT_ATTACH 1
> #define PT_DETACH 2
> #define PT_READ_D 3
> #define PT_WRITE_D 4
> #define PT_STEP 5
> inline static int ptrace(int req, ...) { errno = EPERM; return -1; /*FAIL*/ }
> #endif /* HAVE_SYS_PTRACE_H */
http://bugs.winehq.org/show_bug.cgi?id=2297
------- Additional Comments From wine(a)ambridge.freeserve.co.uk 2004-18-06 05:58 -------
Ok, so the attachment is too large to upload
Please obtain it from:
http://home.btconnect.com/stinky_ric/wine_files.tar.bz2
[root@cartman video]# md5sum wine_files.tar.bz2
612e7b2cb3f4d9e9947a8efc45d81beb wine_files.tar.bz2
[root@cartman video]# ls -l wine_files.tar.bz2
-rw-r--r-- 1 root root 11020760 Jun 18 10:32 wine_files.tar.bz2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2297
------- Additional Comments From wine(a)ambridge.freeserve.co.uk 2004-18-06 04:45 -------
Im about to upload an attachment.
The wine_files.tar.bz2 contains files to untar into your wine C drive location.
It will create a directory Program Files with two sub directories;
Digiguide_new and Digiguide_notcrash
If you run wine in Digiguide_notcrash as wine client.exe it will not crash
If you run wine in Digiguide_new as wine client.exe it will crash
In the Digiguide_new folder is some output files with +relay,+seh set in
WINEDEBUG, there are three files:
WINE_OUTPUT_stderr.log
WINE_OUTPUT_stdout.log -these two are from one run of the program, wine
client.exe > WINE_OUTPUT_stdout.log 2> WINE_OUTPUT_stderr.log
WINE_run2_OUTPUT_stdandstderr.log - this is from wine client.exe >
WINE_run2_OUTPUT_stdandstderr.log 2>&1
(sorry about the unbzipped file being
-rw-r--r-- 1 root root 287528960 Jun 18 10:32 wine_files.tar
LARGE)
Enjoy.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2297
Summary: digiguide crash with marker containing
$SingleLineDescription
Product: Wine
Version: 20040505
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine(a)ambridge.freeserve.co.uk
Digiguide 6.1 - build 443 crashes when I try to use Markers which contain the
$SingleLineDescription output in the arguments to an external program.
Digiguide can run external programs with a marker when you set an alert,
Menu->Edit->All Markers
The Alert can run a program, and the program can take arguments,
http://www.digiguide.com/dg/faq/reminder-arguments.shtml
If I use the $SingleLineDescription argument, wine will crash. This argument
will contain a large string in the output.
Addtitional files hopefully will be attached here.
I am using wine20040505-1rh9winehq
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2296
Summary: pcb123 installer runs, but installation dialogs are
'non-interactive'.
Product: Wine
Version: 20040505
Platform: Other
URL: http://pcb123.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)slacy.com
Go to http://pcb123.com and download the installer program for this application.
Upon running the application, the installer appears to correctly launch, and the
first dialog box of the installation appears, asking me to choose an
installation language. There are two buttons available, one for "Next >" and
the other for "Cancel"
At this point, the dialog seems functional, as I can select different languages
from the list, but upon clicking on either button, nothing happens. The buttons
appear to know they're being clicked (you can tell by the way they indent
themselves) but no action is taken to go to the next step of the installation.
The only way to exit is to close the dialog, which then produces an exception.
I will attach some output of:
# WINEDEBUG=+dialog,+atom wine pcb123.exe
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2295
Summary: Wine crashes in Agent
Product: Wine
Version: 20040615
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kenneth_teagan(a)hotmail.com
Wine 20040615 shuts down in Agent 1.93 when you go to post a usenet
message. Had same problem with 20040505. Running Mandrake 10.0 Linux.
Thanks, keep up the good work!
Ken
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2294
Summary: Wine preloader segfaults
Product: Wine
Version: 20040615
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adam(a)tpetaccia.com
Ever since the wine-preloader was first checked into CVS before 20040615 was
released, it has constantly segfaulted when loaded. If I invoke wine-pthread
manually, windows executables work though. Today, I did a clean recompile of
WINE with only the CFLAGS "-O2 -pipe" and got the following from GDB:
---
Starting program: /usr/local/bin/wine-preloader
Program received signal SIGSEGV, Segmentation fault.
0x780011d0 in write ()
(gdb)
---
I'm not sure if this helps or makes problems worse, but with my original CFLAGS
of "-O2 -march=athlon -frename-registers -fomit-frame-pointer" I got a different
error message from GDB. It printed out a memory address followed by open64(),
which I find odd. Also, when I allow it to dump a core file, and backtrace
that, it says:
---
Program terminated with signal 11, Segmentation fault.
#0 0x7800106e in open64 ()
(gdb)
---
I hope the information I've provided is useful.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2292
------- Additional Comments From julliard(a)winehq.com 2004-17-06 18:07 -------
This should be fixed now. Thanks for the good report.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2293
Summary: passing Help Context IDs to winhelp doesn't work
Product: Wine
Version: 20030911
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ivanr(a)syncad.com
when debuginng wine with these parameters -- winhelp -
-i260 /helpdir/somehelpfile.hlp the HLPFILE_Hash does not give the right
index. 260 is a Context ID for the file being tested. HLPFILE_Hash is
implemented in /programs/winhelp/hlpfile.c
OS: Linux Red Hat 7.5
Thanks in advance!
Ivan
ivanr(a)syncad.com
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1780
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2004-17-06 15:17 -------
this bug is fixed in 20040615 due to patches from Robert i think. please
retest.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2292
bon(a)elektron.ikp.physik.tu-darmstadt.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2004-17-06 15:07 -------
I also noted the trashed files, with a lot of zeros at the start.
I propose you send you patch at least to wine-devel, perhaps also to
wine-patches, as you will find a wider audience there.
Bye
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2290
------- Additional Comments From mike(a)tashcorp.net 2004-17-06 12:54 -------
Wine 20040615 was just released. Have you retried with the latest version?
Also, could you post the command line output from the program when it fails?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2292
Oli1417(a)gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #610|See comment above |xst.Debug-Session-2.txt.bz2
description| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2290
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |1434
nThis| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2292
------- Additional Comments From Oli1417(a)gmx.net 2004-17-06 12:44 -------
The problem occures also with the CVS version 20040615
I've created several debugging logs, which I will still attach:
o xst.Debug-Session-2.txt.bz2:
The log of winedbg session until the problem occures. It's done with
winedbg 2040505, since the latest winedbg somehow didn't work.
The log contains *COMMENT* markers, where I explain things.
o xst.debug.extract.grep_-A_1000_-B_1000_-E_xst_work_hdllib.ref.bz2
A log with wine20040615 and +file,+ntdll,+relay. I grep for the
xst/work/hdllib.ref file and extracted +-1000 lines arround it. The programs
runs extremely slow with +relay and produces gigs of debugging output. Normal
runtime of this case is ~10sec.
o xst.debug.extract.grep_-i_file.bz2
Same as above, but I grep for everything with i/file/
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2292
Summary: Corrupted file problem Wine20040613,20040505 with Xilinx
XST 6.2i
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: Oli1417(a)gmx.net
I've a strange problem with Xilinx XST (ISE) 6.2i, a
Software for FPGA developement. A sort of silicon compiler
for Xilinx Fpgas chips.
System is: Suse 9.1, Linux cassix 2.6.4-52-default #1 Wed Apr 7
02:08:30 UTC 2004 i686 i686 i386 GNU/Linux
The XST program while running usually does a lot of file processing
and creates libraries-files etc and so on.
One of those files is a simple ascii file called "hdllib.ref". It
usually looks like more or less like this, size around some k-bytes.
[...]
AR hex2led hex2led_arch F:/Test/watchvhd_u/hex2led.vhd sub00/vhpl09
EN hex2led NULL F:/Test/watchvhd_u/hex2led.vhd sub00/vhpl08
AR smallcntr inside F:/Test/watchvhd_u/smallcntr.vhd sub00/vhpl01
[...]
When I'm running the XST program with wine, this file gets corrupted
by leading zero-bytes in the beginning of the file:
[0x00 0x00 0x00 0x00 ... all bytes are zero until some time the
text starts.]
AR hex2led hex2led_arch F:/Test/watchvhd_u/hex2led.vhd sub00/vhpl09
EN hex2led NULL F:/Test/watchvhd_u/hex2led.vhd sub00/vhpl08
AR smallcntr inside F:/Test/watchvhd_u/smallcntr.vhd sub00/vhpl01
[...]
I debugged a bit and found out, that this file is 'rewritten' several
times during the program run (see debugging output below).
The problem seems to be, that each time is written new, the new data
is appended to the end of the file, instead of being put in the
beginning !? For some reason the previous data in the file is put to 0x00.
The problem does not occure under Win XP.
While debugging I grepped through the wine source, to track down
what's happening - I don't know the wine internals at all (now more
then before) - and changed following file:
wine20040613/wine/server/file.c
[...]
static struct object *create_file( const char *nameptr, size_t len, unsigned
int access,
unsigned int sharing, int create, unsigned
int options,
unsigned int attrs )
[...]
switch(create)
{
case FILE_CREATE: flags = O_CREAT | O_EXCL; break;
case FILE_OVERWRITE_IF: /* FIXME: the difference is whether we trash
existing attr or not */
case FILE_SUPERSEDE: flags = O_CREAT | O_TRUNC; break;
case FILE_OPEN: flags = 0; break;
case FILE_OPEN_IF: flags = O_CREAT | O_TRUNC; break;
^^^^^^^^^ CHANGED here
case FILE_OVERWRITE: flags = O_TRUNC; break;
default: set_error( STATUS_INVALID_PARAMETER ); goto error;
}
=>> Now it works ;) !?!?
Well - I know that in fact I don't know really what I did (that's life)
... perhaps I did break something else now.
But it might give a hint for the Wine Pros here, for a possible
improvement. IT'S A GREAT PROJECT BTW!!!
Fell free to ask for more info, in case.
Cheerio,
Oliver
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=638
------- Additional Comments From listas(a)ono.com 2004-17-06 03:25 -------
It was documented as command line options in early versions of the guide.
It should still be documented.
Also, it should be documented that a command line option "--debug" existed, and
it's now obsoleted, and the new way of obtaining the same effects.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2291
Summary: Crash running ExpressPCBSetup.exe
Product: Wine
Version: 20040505
Platform: Other
URL: http://expresspcb.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)slacy.com
Hello. I am trying to install the software from http://expresspcb.com, and the
system is crashing when I run wine. I'm running 20040505 on Fedora Core 2,
installed wine from RPMs and newrpms. Here's the debug info I have so far:
# wine ExpressPCBSetup.exe
wine: Unhandled exception (thread 0026), starting debugger...
fixme:console:SetConsoleCtrlHandler (0x557b7700,1) - no error checking or
testing yet
WineDbg starting on pid 1c
Can't find file for ELF 'wine-kthread' ((nil))
No debug information in ELF 'wine-pthread' ((nil))
Breakpoint 1 at 0x5500c480 (_end+0x44ef8480)
No debug information in ELF '/usr/lib/libwine.so.1' (0x55019000)
No debug information in ELF '/lib/tls/libpthread.so.0' (0x55049000)
No debug information in ELF '/lib/tls/libc.so.6' (0x5505b000)
No debug information in ELF '/lib/libdl.so.2' (0x55176000)
No debug information in ELF '/lib/ld-linux.so.2' (0x55000000)
No debug information in ELF '/usr/lib/wine/ntdll.dll.so' (0x5517b000)
No debug information in ELF '/usr/lib/libwine_unicode.so.1' (0x551f0000)
No debug information in ELF '/lib/tls/libm.so.6' (0x552fa000)
No debug information in ELF '/lib/libnss_files.so.2' (0x55334000)
No debug information in ELF '/usr/lib/wine/kernel32.dll.so' (0x55450000)
No debug information in ELF '/usr/lib/wine/user32.dll.so' (0x55880000)
No debug information in ELF '/usr/lib/wine/gdi32.dll.so' (0x559d1000)
No debug information in ELF '/usr/lib/wine/advapi32.dll.so' (0x55a5b000)
No debug information in ELF '/usr/lib/libfreetype.so.6' (0x55a8f000)
No debug information in ELF '/usr/lib/libz.so.1' (0x55af4000)
No debug information in ELF '/usr/lib/libfontconfig.so.1' (0x55b05000)
No debug information in ELF '/usr/lib/libexpat.so.0' (0x55b2c000)
No debug information in ELF '/usr/lib/wine/x11drv.dll.so' (0x55b4b000)
No debug information in ELF '/usr/X11R6/lib/libSM.so.6' (0x55bcb000)
No debug information in ELF '/usr/X11R6/lib/libICE.so.6' (0x55bd3000)
No debug information in ELF '/usr/X11R6/lib/libXxf86dga.so.1' (0x55bea000)
No debug information in ELF '/usr/X11R6/lib/libXxf86vm.so.1' (0x55bf0000)
No debug information in ELF '/usr/X11R6/lib/libXv.so.1' (0x55bf5000)
No debug information in ELF '/usr/X11R6/lib/libXext.so.6' (0x55bfa000)
No debug information in ELF '/usr/X11R6/lib/libX11.so.6' (0x55c08000)
No debug information in ELF '/usr/lib/libGL.so.1' (0x55cd0000)
No debug information in ELF '/usr/X11R6/lib/libXcursor.so.1.0.2' (0x55d4a000)
No debug information in ELF '/usr/X11R6/lib/libXrender.so.1' (0x55d53000)
No debug information in ELF
'/usr/X11R6/lib/X11/locale/lib/common/xlcUTF8Load.so.2' (0x55d61000)
No debug information in ELF '/usr/X11R6/lib/libXrandr.so.2' (0x55d63000)
No debug information in ELF '/usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2'
(0x55daa000)
No debug information in ELF '/usr/lib/wine/imm32.dll.so' (0x55dc7000)
No debug information in 32bit DLL 'E:\ExpressPCBSetup.exe' (0x400000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL' (0x551a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\KERNEL32.DLL' (0x55480000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x55a70000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x559f0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x558a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x55b60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\IMM32.DLL' (0x55dd0000)
Unhandled exception: page fault on write access to 0x00000000 in 32-bit code
(0x558fa100).
In 32-bit mode.
0x558fa100 (DIALOG_GetCharSize+0x1280 in USER32.DLL): movl $0x0,0x0(%eax)
Wine-dbg>bt
Backtrace:
=>0 0x558fa100 (DIALOG_GetCharSize+0x1280 in USER32.DLL) (ebp=5587fd50)
1 0x558fa8d0 (CreateDialogIndirectParamAorW+0x40 in USER32.DLL) (ebp=5587fd74)
2 0x558fa924 (CreateDialogIndirectParamA+0x44 in USER32.DLL) (ebp=5587fd98)
3 0x558fa7e3 (CreateDialogParamA+0x73 in USER32.DLL) (ebp=5587fdbc)
4 0x00401380 (ExpressPCBSetup.exe..text+0x380 in ExpressPCBSetup.exe)
(ebp=5587fe8c)
5 0x004044eb (ExpressPCBSetup.exe.EntryPoint+0x14b in ExpressPCBSetup.exe)
(ebp=5587ff20)
6 0x554d3702 (SetThreadExecutionState+0x1c52 in KERNEL32.DLL) (ebp=5587fff4)
7 0x5501d931 (wine_switch_to_stack+0x11 in libwine.so.1) (ebp=00000000)
Wine-dbg>q
WineDbg terminated on pid 1c
Let me know what else I can help to diagnose this problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2290
Summary: DirectX prob.
Product: Wine
Version: 20040505
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xboxrulz(a)aemail.uni.cc
Whenever I try to run a game called "Tiberian Sun" by Westwood Studios, it always hangs or
freeze in the game. The installer works but not the game. This is mostly because of the
DirectX DLLs. Please fix these DLLs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1964
------- Additional Comments From newsletters(a)wm1.at 2004-16-06 11:30 -------
This bug can be closed, it works with 0.0.20040505
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=80
dpaun(a)rogers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |dpaun(a)rogers.com
Status|ASSIGNED |NEW
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=530
dpaun(a)rogers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From dpaun(a)rogers.com 2004-16-06 08:19 -------
Ferenc created winetest which bundles and run the regression tests on Windows.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2288
Summary: missing file tests.rc in wine-20040615
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: treeve01(a)pi.be
unable to build wine
cp ../../dlls/winsock/tests/ws2_32_test.exe.so ws2_32_test.exe.so && strip
ws2_32_test.exe.so
LD_LIBRARY_PATH="../../libs/unicode:$LD_LIBRARY_PATH" ../../tools/wrc/wrc
--nostdinc -I. -I. -I../../include -I../../include -fowinetest.res
winetest.rc
winetest.rc:24:1: Error: Unable to open include file tests.rc
make[3]: *** [winetest.res] Error 1
make[3]: Leaving directory `/usr/src/wine-20040615/programs/winetest'
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2268
------- Additional Comments From x_13(a)hotmail.com 2004-15-06 14:47 -------
I have the same error message, version 20040505, when trying to install
Dreamweaver MX. I also could not install DCOM98 but I copied all of its DLLs to
the windows/system folder.
fixme:seh:check_resource_write Broken app is writing to the resource data,
enabling work-around
fixme:ntdll:FILE_GetNtStatus Converting errno 38 to STATUS_UNSUCCESSFUL
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2287
------- Additional Comments From m.d.nagy(a)worldnet.att.net 2004-15-06 09:35 -------
Just to clarify the information on affected versions: Wine 20040309 apparently
has no trouble on either Fedora Core 1 or Fedora Core 2. Wine 20040408 and
20040505 also work fine on FC1, but on FC2 they both have this problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2287
m.d.nagy(a)worldnet.att.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Error updating Free Agent |Error updating Free Agent
|message list ("rename |message list ("rename
|primary: File already |primary: File already
|exists") |exists")
|Forte Free Agent error |
|saving database file |
|("rename primary: File |
|already exists") |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Forte Free Agent error saving database file ("rename primary: File already exists")
X-Bugzilla-Reason: AssignedTo
http://bugs.winehq.org/show_bug.cgi?id=2287
Summary: Error updating Free Agent message list ("rename primary:
File already exists")
Forte Free Agent error saving database file ("rename
primary: File already exists")
Product: Wine
Version: 20040505
Platform: PC
URL: http://www.forteinc.com/agent/download.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m.d.nagy(a)worldnet.att.net
When Free Agent downloads new message headers, it sometimes produces an error
dialog with a message of the form "Unable to save changes to database file
[something.IDX, depending on the newsgroup being updated] (rename primary: File
already exists)". The error seems to occur more often when the application has
been open for a long time and/or in relatively heavy use. The message list for
the group generally appears corrupted afterward, and usually can't be updated
successfully after the error occurs unless the application is first restarted.
This happens with Wine 20040408 and 20040505 on Fedora Core 2; it doesn't appear
to happen with Wine 20040309 or Fedora Core 1.
I generated a log file documenting one instance of the error; the steps used
(YMMV, unfortunately) were:
(1) Started Free Agent on FC2, using Wine 20040505 compiled with a patch that
allows the use of the F12 key to toggle tracing (the error occurs without the
patch, but the log file is too large then). Specifically, the following
commands were entered on a KDE Konsole command line, in the directory containing
agent.exe:
export WINEDELAY=1
export WINEDEBUG=+relay
setarch i686 wine agent.exe &> wine.log
(2) Downloaded all message headers for alt.os.linux.redhat,
alt.usenet.offline-reader.forte-agent, comp.emulators.ms-windows.wine, and
linux.redhat.misc.
(3) Marked all the headers in the above four groups for retrieval, pressed the
"get marked message bodies" button, and waited for the messages to download.
(4) Posted a couple of messages.
(5) Pressed F12 to turn on tracing; then selected Free Agent's option to
retrieve new messages for the four groups. Shortly afterward, the error dialog
appeared.
(6) Pressed F12 again to turn off logging.
Besides the error message dialog, the other strange thing I noticed was this
line in the directory listing (output of "ls -l"), which was there after the
test but not before:
?--------- ? ? ? ? ? 000011b1.bid
All the other lines output by "ls -l" showed apparently normal attributes
instead of question marks.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2286
Summary: Foobar2000 audio player has redraw problems
Product: Wine
Version: 20040408
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: askoff(a)luukku.com
Foobar2000 (http://www.foobar2000.org/) is best audio player (for me) in
Windows, and is having couple anoying issues with Wine.
First: The main playlist screen won't redraw at all, if user won't use it.
Second: In Foobar preferences page, all setups are not selectable in left side.
(Try pressing the + box in Core)
Third: Order, Visualization and Seekbar won't remember their position if changed
in top of the main screen.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2285
Summary: BadMatch in Wadauthor
Product: Wine
Version: 20040505
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jpakkane(a)yahoo.com
I was using a Doom level editor called WadAuthor (see bug 2269 for more info on
it). It can crash Wine consistently. The steps are as follows:
- start program
- load a wad file
- zoom in until items are shown with bitmaps
- panning around the map causes a crash
Here's the output Wine prints:
warn:gdi:GDI_GetObjPtr Invalid handle (nil)
warn:ntdll:NtCreateFile L"\\??\\C:" not found (c0000034)
warn:file:CreateFileW Unable to create file L"\\\\.\\C:" (status c0000034)
(The above repeats several times)
warn:gdi:GDI_GetObjPtr Invalid handle (nil)
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 73 (X_GetImage)
Serial number of failed request: 43126
Current serial number in output stream: 43126
Wine failed with return code 1
The crash is definitely caused by the item bitmaps. If you disable the bitmaps
with tools > options > views > disable thing bitmaps, the crash does not occur.
This might be related with bug 447.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2284
------- Additional Comments From aguenther(a)collab.net 2004-14-06 15:16 -------
Hm, that's odd. I just replaced my patch with the original server.c version and
it got compiled without errors. The only difference I have is that everything
else is already compiled and wine installed. What's up with that? Starting from
scratch results in the above error, that is that I am only able to reproduce
this when I start with a clean build.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2284
------- Additional Comments From aguenther(a)collab.net 2004-14-06 15:14 -------
Forgot to paste the error output:
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_USER32_
-D_WINABLE_ -D_REENTRANT -fPIC -Wall -pipe -mpreferred-stack-boundary=2
-fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o dde/server.o dde/server.c
dde/server.c:580: pointers are not permitted as case values
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2284
Summary: dde/server.c:580: pointers are not permitted as case
values
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aguenther(a)collab.net
PROBLEM DESCRIPTION
Using 'gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5)' I ran into a compile
error with the CVS checkout of wine HEAD after executing '/tools/wineinstall'.
...
I am using RedHat 9 with a native Kernel (no customization) on an IBM ThinkPad 40.
MY WORAROUND
Looking up 'case' compile problems with newer gcc compilers I found the
following thread discussion:
http://www.winehq.org/hypermail/wine-devel/2002/11/1283.html
My temporary fix was to apply the following patch, which made me happy, but I am
not sure whether that'll cause other problems or not:
>>> Patch Start
Index: ./dlls/user/dde/server.c
===================================================================
RCS file: /home/wine/wine/dlls/user/dde/server.c,v
retrieving revision 1.16
diff -u -r1.16 server.c
--- ./dlls/user/dde/server.c 26 Apr 2004 23:29:44 -0000 1.16
+++ ./dlls/user/dde/server.c 14 Jun 2004 19:44:18 -0000
@@ -577,7 +577,7 @@
WDML_PostAck(pConv, WDML_SERVER_SIDE, 0, FALSE, FALSE, pXAct->atom,
pXAct->lParam, WM_DDE_REQUEST);
break;
- case CBR_BLOCK:
+ case (WORD)CBR_BLOCK:
ret = WDML_QS_BLOCK;
break;
default:
>>> Patch End
Feel free to route this issue as appropriate or close if invalid.
Thanks for a great product,
-Andreas
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2283
Summary: "warning: use of cast expressions as lvalues is
deprecated"
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: wine-resources
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jjk3(a)msstate.edu
When building WINE CVS, I get the following compiler warnings:
--
make[2]: Entering directory `/home/joeljkp/Wine/wine/tools/wrc'
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o dumpres.o dumpres.c
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o genres.o genres.c
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o newstruc.o newstruc.c
newstruc.c: In function `handle_ani_list':
newstruc.c:805: warning: use of cast expressions as lvalues is deprecated
newstruc.c: In function `new_ani_curico':
newstruc.c:916: warning: use of cast expressions as lvalues is deprecated
gcc -c -I. -I. -I../../include -I../../include
-DINCLUDEDIR="\"/usr/local/include/wine\"" -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o readres.o readres.c
--
These are minor, and don't cause any problems that I can see, but should
probably be fixed nonetheless. Here's my gcc info:
--
$ gcc --version
gcc (GCC) 3.3.3 20040412 (Gentoo Linux 3.3.3-r6, ssp-3.3.2-2, pie-8.7.6)
$
--
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2282
Summary: IBM Translation Manager v.6.0.4 crashes while loading
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: phil(a)mail.ru
The program loads a DLL, and Wine starts importing
this DLL's imports from kernel32.dll. It crashes on the first import
in import_dll() function at dlls/ntdll/loader.c:453, which says:
thunk_list->u1.Function = (PDWORD)find_named_export( imp_mod, exports, exp_size,
pe_name->Name,
pe_name->Hint );
This causes an exception because thunk_list happens to be located in
.rdata section of the DLL, which is readonly.
Currently I have hacked this around by making all PE sections
read-write in map_image() in dlls/ntdll/virtual.c, and the program
works.
If a Wine guru would like to fix it, I can give any
support (e.g., ssh access to my computer with the program).
If not - I will be using this hacked version of Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2157
------- Additional Comments From phil(a)mail.ru 2004-13-06 09:11 -------
The change which breaks everything is reverted in Dmitry Timoshkov's "Various
MDI children activation fixes" patch, and it fixes the bug. Thanks, Dmitry! But
the patch is not in the CVS yet ;(
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2281
Summary: SQLite seems incompatible with WINE
Product: Wine
Version: 20040505
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rstephens(a)gmail.com
Hi
SQLite is an open source database system that stores a complete database in a
file. I have written a windows app that uses it and works fine on wine but when
I do anything with the database, wine gives me a whole lot of (to me)
meaningless errors and a debug prompt I have no idea how to use.
(by the way, I'm dynamically linking to the sqlite DLL)
By the way, does anyone have any suggestions how I can fix this in my app? I
really want to make my app compatible with linux but then if I write it in
linux, i've just ignored the windows users, which I don't need to say, is a much
larger group
Here is the first page or so of errors that appear:
err:module:import_dll Library sqlite.dll (which is needed by L"F:\\AGE.exe") not
found
err:module:LdrInitializeThunk Main exe initialization for L"F:\\AGE.exe" failed,
status c0000135
[richard@cpe-144-136-146-113 richard]$ setarch i386 wine AGE.exe
fixme:msvcrt:_XcptFilter (-529697949,0x556feddc)semi-stub
wine: Unhandled exception (thread 0013), starting debugger...
fixme:console:SetConsoleCtrlHandler (0x55631cf4,1) - no error checking or
testing yet
WineDbg starting on pid 12
Can't find file for ELF 'wine-kthread' ((nil))
Loaded debug information from ELF 'wine-pthread' ((nil))
Breakpoint 1 at 0x0021a480 (_end+0x108170)
Loaded debug information from ELF '/usr/local/lib/libwine.so.1' (0x5501a000)
No debug information in ELF '/lib/tls/libpthread.so.0' ((nil))
No debug information in ELF '/lib/tls/libc.so.6' ((nil))
No debug information in ELF '/lib/libdl.so.2' ((nil))
No debug information in ELF '/lib/ld-linux.so.2' ((nil))
Loaded debug information from ELF '/usr/local/lib/wine/ntdll.dll.so' (0x55033000)
Loaded debug information from ELF '/usr/local/lib/libwine_unicode.so.1' (0x550b7000)
No debug information in ELF '/lib/tls/libm.so.6' ((nil))
No debug information in ELF '/lib/libnss_files.so.2' (0x551c2000)
Loaded debug information from ELF '/usr/local/lib/wine/kernel32.dll.so' (0x552e0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=387
benjamin-d(a)ntlworld.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From benjamin-d(a)ntlworld.com 2004-12-06 13:32 -------
has worked correctly for some time.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2280
Summary: BACKSPACE and LEFT ARROR not responding with FirstClass
v7.112
Product: Wine
Version: 20040505
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: benjamin-d(a)ntlworld.com
The BACKSPACE and LEFT ARROW keys do not work while editting a message using
firstclass v7.112, available from www.firstclass.com, with Wine 2004-05-05.
These keys appear to work elsewhere withing firstclass and within other programs.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2279
Summary: Failed to create process heap
Product: Wine
Version: 20040505
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kevins(a)wn.com.au
On Fedora Core 2, with wine installed from wine-20040505-1fc1winehq.i686.rpm I
cannot run wine even as superuser, nor find a reference about how I could fix
this problem. The HDD is 13% used (37 GB free). (This particular example is a
Dr Seuss kids game which normally would run from CD)
Error report is:
[root@kilaleshwa root]# echo $WINEDEBUG
+all
[root@kilaleshwa root]# wine /mnt/cdrom/abc32.exe
sock_init: shutdown() causes EOF
wineserver: starting (pid=4377)
0008: *fd* (nil) -> 17
0009: *fd* 6 <- 17
0009: init_thread( unix_pid=4374, unix_tid=4374, teb=0x103d8000, entry=(nil),
reply_fd=6, wait_fd=8 )
0009: *fd* 8 <- 18
0009: init_thread() = 0 { pid=0008, tid=0009, boot=1, version=140 }
0009:trace:virtual:NtAllocateVirtualMemory 0x103d8000 00001f84 80000000
00000040View: 0x103d8000 - 0x103d9fff (system)
0x103d8000 - 0x103d9fff c-rWx
0009:trace:virtual:NtAllocateVirtualMemory (nil) 00110000 2000 00000040
View: 0xf6fb0000 - 0xf70bffff (valloc)
0xf6fb0000 - 0xf70bffff -----
0009:trace:virtual:NtAllocateVirtualMemory 0xf6fb0000 00010000 1000 00000040
0009:warn:heap:HEAP_InitSubHeap Could not commit 00010000 bytes for sub-heap
0xf6fb0000
0009:trace:virtual:NtFreeVirtualMemory 0xf6fb0000 00000000 8000
wine: failed to create the process heap
[root@kilaleshwa root]# 0009: *killed* exit_code=0
wineserver: exiting (pid=4377)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2278
Summary: Reproducable crash when moving a slider control
Product: Wine
Version: 20040505
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugzilla(a)qhe.de
I tried to run this small application (which runs flawlessly under windows)
under wine when I encountered the bug:
http://www.3dcenter.de/downloads/texture-filter-testapp.php
When moving any of the slider controls ("max aniso" or "lod bias" for
example), wine crashes.
I first thought, that it might be connected to a driver problem since the
upper sliders change some OpenGL settings, but the crash also occurs when
trying to move some of the sliders at the bottom of the window, which only
change some internal parameters of the program.
Here's the output of wine and winedbg (might not very useful since I use the
debian sid packages which don't have debugging enabled)
--- snip ---
err:msg:DispatchMessageA BeginPaint not called on WM_PAINT for hwnd 0x10021!
wine: Unhandled exception (thread 0009), starting debugger...
WineDbg starting on pid 8
No debug information in ELF '/usr/lib/wine/wine-pthread' ((nil))
Breakpoint 1 at 0x4000c690 (_end+0x3fefa180)
No debug information in ELF '/usr/lib/libwine.so.1' (0x40018000)
No debug information in ELF '/lib/tls/libpthread.so.0' (0x40040000)
No debug information in ELF '/lib/tls/libc.so.6' (0x40050000)
No debug information in ELF '/lib/tls/libdl.so.2' (0x4018b000)
No debug information in ELF '/lib/ld-linux.so.2' (0x40000000)
No debug information in ELF '/usr/lib/wine/ntdll.dll.so' (0x4018f000)
No debug information in ELF '/usr/lib/libwine_unicode.so.1' (0x40205000)
No debug information in ELF '/lib/tls/libm.so.6' (0x40308000)
No debug information in ELF '/lib/tls/libnss_compat.so.2' (0x4033b000)
No debug information in ELF '/lib/tls/libnsl.so.1' (0x40343000)
No debug information in ELF '/lib/tls/libnss_nis.so.2' (0x40358000)
No debug information in ELF '/lib/tls/libnss_files.so.2' (0x40362000)
No debug information in ELF '/usr/lib/wine/kernel32.dll.so' (0x40480000)
No debug information in ELF '/usr/lib/wine/opengl32.dll.so' (0x406b0000)
No debug information in ELF '/usr/X11R6/lib/libSM.so.6' (0x4074e000)
No debug information in ELF '/usr/X11R6/lib/libICE.so.6' (0x40757000)
No debug information in ELF '/usr/X11R6/lib/libXv.so.1' (0x4076e000)
No debug information in ELF '/usr/X11R6/lib/libXext.so.6' (0x40773000)
No debug information in ELF '/usr/X11R6/lib/libX11.so.6' (0x40781000)
No debug information in ELF '/usr/lib/libGL.so.1' (0x40848000)
No debug information in ELF '/usr/lib/libGLU.so.1' (0x408d7000)
No debug information in ELF '/lib/libgcc_s.so.1' (0x40a0b000)
No debug information in ELF '/usr/lib/wine/user32.dll.so' (0x40a13000)
No debug information in ELF '/usr/lib/wine/gdi32.dll.so' (0x40b65000)
No debug information in ELF '/usr/lib/wine/advapi32.dll.so' (0x40c47000)
No debug information in ELF '/usr/lib/wine/glu32.dll.so' (0x40c7b000)
No debug information in ELF '/usr/lib/wine/comctl32.dll.so' (0x40c92000)
No debug information in ELF '/usr/lib/wine/comdlg32.dll.so' (0x40d4c000)
No debug information in ELF '/usr/lib/wine/shell32.dll.so' (0x40ddd000)
No debug information in ELF '/usr/lib/wine/ole32.dll.so' (0x40e76000)
No debug information in ELF '/usr/lib/wine/rpcrt4.dll.so' (0x40ef7000)
No debug information in ELF '/usr/lib/wine/iphlpapi.dll.so' (0x40f44000)
No debug information in ELF '/usr/lib/wine/shlwapi.dll.so' (0x40f64000)
No debug information in ELF '/usr/lib/libfreetype.so.6' (0x40fc3000)
No debug information in ELF '/usr/lib/libz.so.1' (0x41030000)
No debug information in ELF '/usr/lib/libfontconfig.so.1' (0x41041000)
No debug information in ELF '/usr/lib/libexpat.so.1' (0x41068000)
No debug information in ELF '/usr/lib/wine/x11drv.dll.so' (0x41088000)
Loaded debug information from ELF
'/usr/X11R6/lib/modules/dri/r200_dri.so' (0x4110e000)
No debug information in ELF '/usr/lib/libXcursor.so.1' (0x4917d000)
No debug information in ELF '/usr/lib/libXrender.so.1' (0x49186000)
No debug information in ELF
'/usr/X11R6/lib/X11/locale/lib/common/xlcDef.so.2' (0x4918e000)
No debug information in ELF '/usr/X11R6/lib/libXrandr.so.2' (0x491a1000)
No debug information in ELF
'/usr/X11R6/lib/X11/locale/lib/common/ximcp.so.2' (0x491e9000)
No debug information in ELF '/usr/lib/wine/imm32.dll.so' (0x49207000)
No debug information in 32bit DLL 'D:\Tools\AF-Tester
OGL\FilterTest.exe' (0x400000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL' (0x401b0000)
No debug information in 32bit DLL 'C:
\WINDOWS\SYSTEM\KERNEL32.DLL' (0x404b0000)
No debug information in 32bit DLL 'C:
\WINDOWS\SYSTEM\ADVAPI32.DLL' (0x40c60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GDI32.DLL' (0x40b90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\USER32.DLL' (0x40a40000)
No debug information in 32bit DLL 'C:
\WINDOWS\SYSTEM\OPENGL32.DLL' (0x406e0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\GLU32.DLL' (0x40c80000)
No debug information in 32bit DLL 'C:
\WINDOWS\SYSTEM\COMCTL32.DLL' (0x40ca0000)
No debug information in 32bit DLL 'C:
\WINDOWS\SYSTEM\IPHLPAPI.DLL' (0x40f50000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\RPCRT4.DLL' (0x40f10000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\OLE32.DLL' (0x40e90000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHLWAPI.DLL' (0x40f80000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\SHELL32.DLL' (0x40e00000)
No debug information in 32bit DLL 'C:
\WINDOWS\SYSTEM\COMDLG32.DLL' (0x40d60000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\X11DRV.DLL' (0x410a0000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\IMM32.DLL' (0x49210000)
Unhandled exception: page fault on read access to 0x00000038 in 32-bit code
(0x40d1ea57).
In 32-bit mode.
0x40d1ea57 (TOOLTIPS_Unregister+0x2487 in COMCTL32.DLL): movl 0x0(%edi),%eax
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2276
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Screen refresh error in |Screen refresh error in
|Austerlisz demo |Austerlitz demo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2277
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Redraw/refresh errors for |Redraw/refresh errors for
|Remote Assult demo |Remote Assault demo
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2128
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)tashcorp.net 2004-11-06 22:28 -------
This bug has been closed out because the problem no longer presents itself as
of Wine 20040505.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2276
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |1434
nThis| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2276
Summary: Screen refresh error in Austerlisz demo
Product: Wine
Version: 20040505
Platform: Other
URL: http://www.breakawaygames.com/downloads/austerlitz_demo.
exe
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mike(a)tashcorp.net
The demo pointed to to by the URL has a screen redraw error. To reproduce the
error:
- Launch the demo
- Choose "Play A Game" from the menu
- Wave the mouse over the scroll windows on the left half of the screen. The
text contents should disappear.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2129
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)tashcorp.net 2004-11-06 22:03 -------
This bug is being closed out since it no longer appears as of Wine 20040505.
The bug commented on by Henk Poley will be filed separately.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1434
Bug 1434 depends on bug 2129, which changed state.
Bug 2129 Summary: Austerlitz Demo Generates Unhandled Exception
http://bugs.winehq.org/show_bug.cgi?id=2129
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2056
------- Additional Comments From mike(a)tashcorp.net 2004-11-06 21:53 -------
Test repeated under Wine 20040505 using Mandrake 10.0.
Kicker bar is no longer visible, but the mouse is still unusable.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From brettholcomb(a)charter.net 2004-11-06 19:04 -------
The path= is left over from when I first installed the wine-cvs early this week.
I created the paths and then the first run of wine put them in the registry. I
never took them out because they remind me of what I have setup. They don't
hurt if they are left in do they?
I got the keystrokes working in unmananaged - I did a reinstall of SOF.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2050
------- Additional Comments From lameaim(a)bredband.tiscali.se 2004-11-06 16:45 -------
I *kinda* solved this, by copying the CD to my disk and replacing setup.mpq with
one taken from an English War3 CD. This makes the installer switch between
english and polish, but it installs fine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
spetreolle(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |spetreolle(a)yahoo.fr
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From spetreolle(a)yahoo.fr 2004-11-06 14:16 -------
I reran tests.
1. The app outputs no sound at all anywhere.
3. Wave sound test works even though it gives the errors.
4. Dsound fails - it gives ONE short sound and the output below. Then I get no
sound and no more output. Using wineoss gives output.
Check your WINE install - the config file given for tests shouldnt show "Path" =
"xxx" (obsolete) if WINE is a CVS version.
2. The app isn't taking keystrokes either. It ignores them and then when I
exit the app I see them in the terminal window I started the app in.
Use Desktop mode to make sure the window gets the focus.
"Managed" = "Y"
"Desktop" = "800x600"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From brettholcomb(a)charter.net 2004-10-06 19:22 -------
I reran tests.
1. The app outputs no sound at all anywhere.
2. The app isn't taking keystrokes either. It ignores them and then when I
exit the app I see them in the terminal window I started the app in.
3. Wave sound test works even though it gives the errors.
4. Dsound fails - it gives ONE short sound and the output below. Then I get no
sound and no more output. Using wineoss gives output.
dsound.c:1033:Testing Primary Sound Driver - winealsa.drv
dsound.c:721: DirectSound Caps: flags=0x0000000f secondary min=100 max=200000
dsound.c:732: DirectSound SpeakerConfig: 0x000a0004
dsound.c:1037: Testing the primary buffer
err:dsound:IDirectSoundImpl_DuplicateSoundBuffer trying to duplicate primary buffer
dsound.c:282: Caps: flags=0x000000c5 size=22050
dsound.c:296: tag=0x0001 22050x8x2 avg.B/s=44100 align=2
dsound.c:323: status=0x0000
dsound.c:349: tag=0x0001 11025x16x2 avg.B/s=44100 align=4
dsound.c:366: Playing 440Hz LA at 11025x16x2
dsound.c:436: volume=-300
dsound.c:459: pan=0
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From reif(a)earthlink.net 2004-10-06 17:30 -------
Assuming you actually heard something, then it appears that wine
is configured to use your hardware properly and is working as
well as ALSA can. The problem must be related to the software
you are running and the only way to debug that is with a trace
file. If the files are to big to post, you can e-mail them
directly to me.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2275
Summary: wine wont work with hebrew keyboard layout.
Product: Wine
Version: 20040408
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: george(a)scary.co.il
i tried running mIRC with wine (which is a fully supported proggy with wine)
tried to write something in english and it worked, then changed the layout to
hebrew and tried typing and got the following error:
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0CF7
(hebrew_qoph) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=C0,scanCode=29,keycode=1A,state=10)
(using only one key)
I'm using slackware-9.1 with kde 3.2.2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2273
------- Additional Comments From mike(a)tashcorp.net 2004-10-06 15:02 -------
Can you provide more specifics...
What application were you running?
What actions were taken to cause the error?
Does it happen every time you perform the actions?
What version of X are you using?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1760
3.14(a)piology.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |3.14(a)piology.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1726
3.14(a)piology.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |3.14(a)piology.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1568
3.14(a)piology.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |3.14(a)piology.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1900
3.14(a)piology.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |3.14(a)piology.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1536
------- Additional Comments From 3.14(a)piology.org 2004-10-06 10:29 -------
Just to add to this bug. I use Wine 20040505 (compiled on Debian Sarge). I have
a German keyboard (105 keys) with no dead keys which works perfect under X. Wine
does not detect it. I'll attach the output of `WINEDEBUG=+key,+keyboard wine >&
key.log /winc/windows/notepad.exe` in a minute. Wine chooses the worst keyboard
I can think of, namely "United States keyboard layout" which has almost no key
in common with my keyboard.
Is there a way to tell Wine which keyobard to use?
Anyhow, I believe the following bugs describe the same or very similar problems.
Maybe someone in charge can check and dupe if I am correct: bug 1568, bug 1726,
bug 1760, bug 1900.
pi
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From brettholcomb(a)charter.net 2004-09-06 21:59 -------
Created an attachment (id=605)
--> (http://bugs.winehq.org/attachment.cgi?id=605&action=view)
Config file used for sound tests.
Here's the config file. I was running as root. I wiped out all my existing
.wine directories and ran wine. It created the config file which I modified to
put the winealsa.drv line in. Nothing else was changed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
brettholcomb(a)charter.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #601 is|0 |1
obsolete| |
------- Additional Comments From brettholcomb(a)charter.net 2004-09-06 21:57 -------
Created an attachment (id=604)
--> (http://bugs.winehq.org/attachment.cgi?id=604&action=view)
Wave test - failed
I killed this test, as I did dsound. Both appeared to hang after a while.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
brettholcomb(a)charter.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #602 is|0 |1
obsolete| |
------- Additional Comments From brettholcomb(a)charter.net 2004-09-06 21:54 -------
Created an attachment (id=603)
--> (http://bugs.winehq.org/attachment.cgi?id=603&action=view)
Dsound test - fails
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From brettholcomb(a)charter.net 2004-09-06 21:54 -------
Attached are the correct test results. I did not have winealsa.drv in the
config file originally. They both fail. However, Alsa works fine for
everything else. I can play CDs, movies, etc.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2274
Summary: Broken installer (used to work; Lords of the Realm 2)
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gilead(a)yellowhedgehog.com
"Lords of the Realm 2" game works perfectly well with Wine but its installer
breaks and drops me to the debugger. This app could safely go to the 'Gold' apps
list if not this installer :(
Last time I tried to run install this game with Wine was about two years ago and
I remember that at that time it installed fine under Wine.
I'll be happy to provide any additional info about this problem.
Wine version: compiled from CVS 2004.06.10 01:00 GMT
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1064
loic(a)dev.erodia.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |loic(a)dev.erodia.net
------- Additional Comments From loic(a)dev.erodia.net 2004-09-06 16:46 -------
Confirmed with cvs version, and fake Windows directory.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |1434
nThis| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2271
mike(a)tashcorp.net changed:
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |1434
nThis| |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2273
Summary: X error
Product: Wine
Version: 20031118
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: givaldo.oliveira(a)unimix.com.br
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 73 (X_GetImage)
Serial number of failed request: 44788
Current serial number in output stream: 44788
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2176
------- Additional Comments From R.J.Shearman(a)warwick.ac.uk 2004-09-06 06:46 -------
Robin Laing: Your bug looks like the TypeLib ref count bug that should be fixed
in CVS. Is there a freely downloadable demo that shows the same bug?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2272
------- Additional Comments From reif(a)earthlink.net 2004-08-06 06:06 -------
Please try again to generate a trace file. Sound problems are
highly hardware and os dependent so they ofen can't be duplicated
by someone else unless they have the EXACT same hardware and software
configurations. A trace file is the only practical way to see what
is happening on your system. Please try:
WINEDEBUG="+wave,+dsound,+dsound3d" wine sof.exe
which should print tons of stuff to the screen. If that works,
redirect the output to a file by appending >& trace to the above
command.
Another thing you could try to see if wine is configured correctly
is to run the sound tests in interactive mode. You can do this by
going to the wine/dlls/winmm/tests directory and running:
WINETEST_INTERACTIVE=1 wine winmm_test.exe.so wave
and listen for the tones. You can also go to wine/dlls/dsound/tests
and run:
WINETEST_INTERACTIVE=1 wine dsound_test.exe.so dsound
to check Direct Sound.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1374
------- Additional Comments From david_costanzo(a)yahoo.com 2004-08-06 05:04 -------
I got in touch with the guys who wrote Hammer. They are quite nice and are
eager to help. They sent me a build of Hammer 3.4 that set the DCX_CLIPSIBLINGS
flag. Unfortunately, this did not fix the problem. I hacked wine such that all
calls to GetDCEx() assumed the DCX_CLIPSIBLINGS flag. This did not help, either.
Then I tried hacking GetDCEx() to always or-in "DCX_CACHE | DCX_CLIPSIBLINGS",
which are the flags that Lionel's patch uses, and *that* fixed the problem. At
least, it fixed the problem to the extent that Lionel's patch fixed the problem.
That is, the stand-alone OpenGL windows now render, but OpenGL does not render
when the window is a child of a 4-way splitter.
Lionel, do have any ideas why the window in the four-way splitter is blank while
stand-alone windows render properly? Can you think of something that the
application could do to convince wine to render OpenGL in the splitter window?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.