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=2167
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |major
Version|20040505 |20040615
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-18-06 08:51 -------
I tried to install the new version.
I got something similar although the script could not create symbolic links for
dos devices.
Here is the log of './tools/wineinstall':
-----------------------------------------
Windows was not found on your system, so I assume you want
a Wine-only installation. Am I correct?
(yes/no) yes
Configuring Wine without Windows.
Some fake Windows directories must be created, to hold any .ini files, DLLs,
start menu entries, and other things your applications may need to install.
Where would you like your fake C drive to be placed?
(default is /home/j/.wine/drive_c) /home/wine
Configuring Wine for a no-windows install in /home/wine...
mkdir: Ne peut créer le répertoire `/home/j/.wine/dosdevices': No such file or
directory
ln: création d'un lien symbolique `/home/j/.wine/dosdevices/a:' vers `/mnt/fd0':
No such file or directory
ln: création d'un lien symbolique `/home/j/.wine/dosdevices/c:' vers
`/home/wine': No such file or directory
ln: création d'un lien symbolique `/home/j/.wine/dosdevices/d:' vers `/cdrom':
No such file or directory
ln: création d'un lien symbolique `/home/j/.wine/dosdevices/e:' vers `/tmp': No
such file or directory
ln: création d'un lien symbolique `/home/j/.wine/dosdevices/f:' vers `/home/j':
No such file or directory
ln: création d'un lien symbolique `/home/j/.wine/dosdevices/z:' vers `/': No
such file or directory
Xlib: extension "GLX" missing on display ":0.0".
wine: Unhandled exception (thread 0009), starting debugger...
fixme:console:SetConsoleCtrlHandler (0x405ec800,1) - no error checking or
testing yet
WineDbg starting on pid 0x8
fixme:dbghelp:SymLoadModule should no longer happen
Unhandled exception: page fault on read access to 0x000064e0 in 32-bit code
(0x404cc4fe).
In 32 bit mode.
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iCurrencyW.6<4055af3e-00000014> iCurrencyW<4055af3e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
comW.15<405559f4-00000008> comW<405559f4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
PK16SysVar.1<4057b6e0-00000080> PK16SysVar<4057b6e0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
lptW.14<405613d4-00000008> lptW<405613d4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
systemW.13<40554220-00000030> systemW<40554220-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
GlobalRegistryDirW.43<405546a0-00000024> GlobalRegistryDirW<405546a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
conoutW.2<40556cb0-00000010> conoutW<40556cb0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iLZeroW.12<4055afd0-0000000e> iLZeroW<4055afd0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sNegativeSignW.34<4055b17c-0000001c> sNegativeSignW<4055b17c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
wSectionFormat.0<4055e386-00000012> wSectionFormat<4055e386-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
formatW.16<40555a00-00000024> formatW<40555a00-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
ntuser_datW.11<405541aa-00000018> ntuser_datW<405541aa-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cpuW.2<40557060-00000022> cpuW<40557060-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cache_lastchecked.1<4057b400-00000004> cache_lastchecked<4057b400-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
conoutW.4<40558324-00000010> conoutW<40558324-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
configW.0<4055e920-00000050> configW<4055e920-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
NLS_CachedFormats.1<4057b420-00000004> NLS_CachedFormats<4057b420-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
kernel32W.7<4055d2c4-00000012> kernel32W<4055d2c4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
leadin.1<4055f752-00000012> leadin<4055f752-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
envW.2<4055d24a-00000018> envW<4055d24a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
segpWin16Mutex.1<4057b5c4-00000004> segpWin16Mutex<4057b5c4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
WineW.6<405540c0-0000004e> WineW<405540c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
defaultW.12<405541e0-00000032> defaultW<405541e0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sThousandW.37<4055b1ca-00000014> sThousandW<4055b1ca-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
win9x_reg_pathW.5<40554090-00000018> win9x_reg_pathW<40554090-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
NetworkW.0<40556360-00000054> NetworkW<40556360-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iCalendarTypeW.3<4055aef8-0000001c> iCalendarTypeW<4055aef8-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
baudW.4<4055593a-0000000c> baudW<4055593a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
bkslashes_with_dotW.2<4055830c-0000000a> bkslashes_with_dotW<4055830c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
UTGlue16_Segptr.0<4057b884-00000004> UTGlue16_Segptr<4057b884-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iTLZeroW.17<4055b02e-00000010> iTLZeroW<4055b02e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sCurrencyW.23<4055b08c-00000014> sCurrencyW<4055b08c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
DosW.0<40560e60-00000008> DosW<40560e60-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
SystemW.0<40556fc0-00000048> SystemW<40556fc0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
wszSeparator.4<4055e3ac-00000004> wszSeparator<4055e3ac-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
RelayIncludeW.1<4055e970-0000001a> RelayIncludeW<4055e970-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
xonW.9<40555976-0000000a> xonW<40555976-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sec_flags.0<405610e4-00000004> sec_flags<405610e4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
toW.8<4055596e-00000008> toW<4055596e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
formatW.5<4055ce6a-0000000e> formatW<4055ce6a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
szCountryCodeValueName.48<4055b3c0-00000018>
szCountryCodeValueName<4055b3c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
DebuggerW.1<40557cfa-00000012> DebuggerW<40557cfa-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
classes_datW.19<40554348-0000001a> classes_datW<40554348-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
handle.1<4057b68e-00000002> handle<4057b68e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
RegistryW.38<40554560-00000056> RegistryW<40554560-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
tail.2<4057af20-00000320> tail<4057af20-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
SaveOnlyUpdatedKeysW.41<40554640-00000028> SaveOnlyUpdatedKeysW<40554640-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iMeasureW.13<4055afde-00000012> iMeasureW<4055afde-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sYearMonthW.40<4055b202-00000016> sYearMonthW<4055b202-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
default_sysdirW.6<4055d2a0-00000024> default_sysdirW<4055d2a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
wNameFormat.1<4055e398-00000006> wNameFormat<4055e398-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
userprofileW.34<40554512-00000018> userprofileW<40554512-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
TypeW.22<40554388-0000000a> TypeW<40554388-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
s1159W.20<4055b062-0000000c> s1159W<4055b062-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
SessionW.1<4055cde0-00000072> SessionW<4055cde0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
nt_reg_pathW.4<40554060-00000030> nt_reg_pathW<40554060-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sListW.28<4055b0e6-0000000c> sListW<4055b0e6-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
whence.1<40558300-0000000c> whence<40558300-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
exeW.0<4055d1ac-0000000a> exeW<4055d1ac-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
code_sel32.0<4057b6d8-00000002> code_sel32<4057b6d8-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
creation_name.5<4057a1d4-00000014> creation_name<4057a1d4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iDateW.7<4055af52-0000000c> iDateW<4055af52-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
SnoopIncludeW.3<4055e9a4-0000001a> SnoopIncludeW<4055e9a4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
default_rootW.0<40561170-00000004> default_rootW<40561170-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
slashcW.11<4055d33c-0000000a> slashcW<4055d33c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
escapes.0<40553fe0-00000020> escapes<40553fe0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
idsrW.14<405559ac-0000000c> idsrW<405559ac-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sMonGroupingW.31<4055b124-0000001a> sMonGroupingW<4055b124-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
env_keyW.1<4055d1c0-0000008a> env_keyW<4055d1c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
w16Mutex.0<4057b5c0-00000004> w16Mutex<4057b5c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
com1W.17<40561400-00000024> com1W<40561400-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
beep.0<40556ca0-00000001> beep<40556ca0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
already_mapped.1<4057b2e8-00000004> already_mapped<4057b2e8-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
nulW.11<405613bc-00000008> nulW<405613bc-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
softwareW.14<40554260-00000034> softwareW<40554260-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
SysidW.4<40557098-0000001c> SysidW<40557098-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iFirstWeekOfYearW.10<4055afa0-00000022> iFirstWeekOfYearW<4055afa0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
profileW.33<40554502-00000010> profileW<40554502-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
winver.5<4057b88e-00000002> winver<4057b88e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
comW.13<405613cc-00000008> comW<405613cc-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sGroupingW.26<4055b0be-00000014> sGroupingW<4055b0be-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
tempW.30<405544e6-0000000a> tempW<405544e6-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
User32DllW.4<40557d16-00000016> User32DllW<40557d16-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
wineW.24<40554440-0000004e> wineW<40554440-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iNegCurrW.14<4055aff0-00000012> iNegCurrW<4055aff0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iFirstDayOfWeekW.9<4055af80-00000020> iFirstDayOfWeekW<4055af80-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cdfsW.9<4056134c-0000000a> cdfsW<4056134c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
prnW.12<405613c4-00000008> prnW<405613c4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iNegNumberW.15<4055b002-00000016> iNegNumberW<4055b002-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
dotVxDW.0<405619da-0000000a> dotVxDW<405619da-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
intlW.43<4055b230-0000000a> intlW<4055b230-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
szFormat.45<4055b372-00000006> szFormat<4055b372-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
drive_types_keyW.1<40561180-0000003a> drive_types_keyW<40561180-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sMonThousandSepW.32<4055b140-00000020> sMonThousandSepW<4055b140-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
index.2<4057b5bc-00000004> index<4057b5bc-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
proc.0<4057b440-00000004> proc<4057b440-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
system_datW.18<40554330-00000018> system_datW<40554330-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sPositiveSignW.35<4055b198-0000001c> sPositiveSignW<4055b198-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
console_wait_event.3<4057b240-00000004> console_wait_event<4057b240-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iDigitsW.8<4055af5e-00000010> iDigitsW<4055af5e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iPaperSizeW.16<4055b018-00000016> iPaperSizeW<4055b018-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
buffer.0<4057ae60-00000050> buffer<4057ae60-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
hRunOnce.3<4057b3c4-00000004> hRunOnce<4057b3c4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
rtsW.13<405559a2-0000000a> rtsW<405559a2-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iLDateW.11<4055afc2-0000000e> iLDateW<4055afc2-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
tmpW.31<405544f0-00000008> tmpW<405544f0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
special.2<40556428-0000001e> special<40556428-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
lpt1W.18<40561440-00000024> lpt1W<40561440-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
dtrW.12<40555998-0000000a> dtrW<40555998-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
ValueName.0<4055cda0-00000038> ValueName<4055cda0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iCurrDigitsW.5<4055af26-00000018> iCurrDigitsW<4055af26-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
ntfsW.8<40561342-0000000a> ntfsW<40561342-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
Clone.10<40554180-0000002a> Clone<40554180-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
onW.2<4055592c-00000006> onW<4055592c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
deflt.3<40556446-00000002> deflt<40556446-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
argsW.9<4055d300-0000002c> argsW<4055d300-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
empty_strW.5<4055e3b0-00000002> empty_strW<4055e3b0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
LocaleW.1<4055aeb2-0000000e> LocaleW<4055aeb2-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
__JCR_END__<4057a9c4-00000000> __JCR_LIST__<4057a9c4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cached_memstatus.0<4057b3e0-00000020> cached_memstatus<4057b3e0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
info_size.42<4055b22c-00000004> info_size<4055b22c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
systemW.26<4055449e-0000000e> systemW<4055449e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sNativeDigitsW.33<4055b160-0000001c> sNativeDigitsW<4055b160-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
tmp.3<4055ce58-00000008> tmp<4055ce58-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
UseDNSW.1<405563c0-00000026> UseDNSW<405563c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
nt_disposition.6<40558334-00000014> nt_disposition<40558334-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
soW.8<4055d2d6-00000008> soW<4055d2d6-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
comspecW.10<4055d32c-00000010> comspecW<4055d32c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
offW.3<40555932-00000008> offW<40555932-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
odsrW.10<40555980-0000000c> odsrW<40555980-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cmdlineA.0<4057b300-00000004> cmdlineA<4057b300-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
pifW.1<4055bba4-0000000a> pifW<4055bba4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
auxW.10<405613b4-00000008> auxW<405613b4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
configW.1<40560e80-00000044> configW<40560e80-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sDecimalW.25<4055b0ac-00000012> sDecimalW<4055b0ac-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
formatW.44<4055b23a-0000000a> formatW<4055b23a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
updateValues.0<4055ae80-00000032> updateValues<4055ae80-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
octsW.11<4055598c-0000000c> octsW<4055598c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
dotDLL.4<4055bbda-0000000a> dotDLL<4055bbda-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
IdentifierW.3<40557082-00000016> IdentifierW<40557082-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
classesW.1<40554000-00000012> classesW<40554000-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
fatW.7<4056133a-00000008> fatW<4056133a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
NumShapeW.41<4055b218-00000012> NumShapeW<4055b218-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sTimeW.39<4055b1f6-0000000c> sTimeW<4055b1f6-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
PathW.2<405611ba-0000000a> PathW<405611ba-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
stopbits15W.1<40555924-00000008> stopbits15W<40555924-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
leadin.0<4055f740-00000012> leadin<4055f740-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
NLS_LocaleIndices.0<40559880-0000005a> NLS_LocaleIndices<40559880-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
UserW.36<4055453a-0000000a> UserW<4055453a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
ENV_program_name.0<40560062-0000001e> ENV_program_name<40560062-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
PeriodicSaveW.42<40554668-0000001a> PeriodicSaveW<40554668-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sMonDecimalSepW.30<4055b106-0000001e> sMonDecimalSepW<4055b106-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
rootW.15<405613dc-00000008> rootW<405613dc-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sShortDateW.36<4055b1b4-00000016> sShortDateW<4055b1b4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
NLS_NegCyFormats.2<40559a90-00000010> NLS_NegCyFormats<40559a90-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
ProfileW.7<4055410e-00000010> ProfileW<4055410e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
s2359W.21<4055b06e-0000000c> s2359W<4055b06e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
drive_types_keyW.23<405543a0-0000003a> drive_types_keyW<405543a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
load_win_reg_filesW.39<405545c0-00000032> load_win_reg_filesW<405545c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
coninW.3<40558316-0000000e> coninW<40558316-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
securityW.16<405542e0-00000034> securityW<405542e0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
AutoW.2<40557d0c-0000000a> AutoW<40557d0c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
pipeW.7<40558348-0000000c> pipeW<40558348-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
init_done.0<4057b3cc-00000004> init_done<4057b3cc-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
comW.0<405558e0-00000008> comW<405558e0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
szLocaleKeyName.46<4055b378-0000000e> szLocaleKeyName<4055b378-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
comW.0<4055bb9a-0000000a> comW<4055bb9a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
winsysdirW.28<405544ba-00000014> winsysdirW<405544ba-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iCountryW.4<4055af14-00000012> iCountryW<4055af14-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
system_1stW.17<40554314-0000001c> system_1stW<40554314-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
hUser32.0<4057b5b0-00000004> hUser32<4057b5b0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
dataW.6<40555956-0000000c> dataW<40555956-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
Software.9<40554140-00000022> Software<40554140-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
already_done.0<4057b2e4-00000004> already_done<4057b2e4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
appdefaultsW.2<40560ec4-0000001a> appdefaultsW<40560ec4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
StatDataW.3<40554020-00000036> StatDataW<40554020-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
windirW.3<4055d262-0000000e> windirW<4055d262-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
DefaultW.37<40554544-00000012> DefaultW<40554544-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iTimeW.19<4055b056-0000000c> iTimeW<4055b056-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
coninW.1<40556ca2-0000000e> coninW<40556ca2-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
default_windirW.5<4055d284-00000016> default_windirW<4055d284-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cpuflags.6<40560ef0-00000014> cpuflags<40560ef0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
user_datW.20<40554362-00000014> user_datW<40554362-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
fpuW.1<40557020-0000002e> fpuW<40557020-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
System.8<4055411e-0000001e> System<4055411e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
mhzKeyW.5<405570b4-0000000a> mhzKeyW<405570b4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sDateW.24<4055b0a0-0000000c> sDateW<4055b0a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
parityW.5<40555946-00000010> parityW<40555946-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
DeviceW.3<405611c4-0000000e> DeviceW<405611c4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
parallelportsW.5<405612a0-00000060> parallelportsW<405612a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
com0W.16<405613e4-00000012> com0W<405613e4-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
windirW.27<405544ac-0000000e> windirW<405544ac-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
szAlternateSortsKeyName.47<4055b3a0-00000020>
szAlternateSortsKeyName<4055b3a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
stopW.7<40555962-0000000c> stopW<40555962-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sys_timer.1<4057b40c-00000002> sys_timer<4057b40c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sLanguageW.27<4055b0d2-00000014> sLanguageW<4055b0d2-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
temp.4<4055ce60-0000000a> temp<4055ce60-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
__bss_start<4057ad88-00000000> _edata<4057ad88-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cachedsi.7<4057b2c0-00000024> cachedsi<4057b2c0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
info_size.2<4055ce54-00000004> info_size<4055ce54-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
versionW.3<40560ede-00000012> versionW<40560ede-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
pathW.3<4055bbd0-0000000a> pathW<4055bbd0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
SnoopExcludeW.4<4055e9be-0000001a> SnoopExcludeW<4055e9be-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
MachineW.35<4055452a-00000010> MachineW<4055452a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
winsysdirW.4<4055d270-00000014> winsysdirW<4055d270-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
pathW.32<405544f8-0000000a> pathW<405544f8-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cached_path.2<4057b434-00000004> cached_path<4057b434-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
load_global_reg_filesW.40<40554600-00000030>
load_global_reg_filesW<40554600-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
serialportsW.4<40561240-0000005c> serialportsW<40561240-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
NLS_PosCyFormats.3<40559aa0-00000004> NLS_PosCyFormats<40559aa0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
current.0<4057a428-00000004> current<4057a428-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
dosver.4<4057b88c-00000002> dosver<4057b88c-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sLongDateW.29<4055b0f2-00000014> sLongDateW<4055b0f2-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
buffer.1<4057aec0-00000050> buffer<4057aec0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
audiocdW.6<40561328-00000012> audiocdW<40561328-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
conW.8<40558354-00000006> conW<40558354-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sTimeFormatW.38<4055b1de-00000018> sTimeFormatW<4055b1de-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
cache.6<4057b2a0-00000004> cache<4057b2a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
RelayExcludeW.2<4055e98a-0000001a> RelayExcludeW<4055e98a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
samW.15<405542a0-0000002a> samW<405542a0-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
sCountryW.22<4055b07a-00000012> sCountryW<4055b07a-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
AeDebugW.0<40557c80-0000007a> AeDebugW<40557c80-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
windowsW.25<4055448e-00000010> windowsW<4055448e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
quotesW.12<4055d346-0000000a> quotesW<4055d346-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
envW.29<405544ce-00000018> envW<405544ce-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
iTimePrefixW.18<4055b03e-00000018> iTimePrefixW<4055b03e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
reg_datW.21<40554376-00000012> reg_datW<40554376-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
module.0<4057b408-00000004> module<4057b408-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
wValueFormat.2<4055e39e-00000008> wValueFormat<4055e39e-00000000>
fixme:dbghelp:elf_new_wine_thunks Duplicate in kernel32<elf>:
wNewLine.3<4055e3a6-00000006> wNewLine<4055e3a6-00000000>
0x404cc4fe INSTR_EmulateInstruction [instr.c:449] in kernel32: movb
0x0(%edi),%dl
Unable to open file instr.c
Wine-dbg>
Ctrl-C
Ctrl-C: stopping debuggee
Ctrl-C
Ctrl-C: stopping debuggee
WineDbg terminated on pid 0x8
/home/j/.wine updated successfully.
Created /home/j/.wine/config using default Wine configuration.
You probably want to review the file, though.
Installation complete for now. Good luck (this is still alpha software).
If you have problems with WINE, please read the documentation first,
as many kinds of potential problems are explained there.
-----------------------------------------
--
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 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.