[Bug 11930] Unhandled page fault on read access to 0x00000001

wine-bugs at winehq.org wine-bugs at winehq.org
Sat Mar 8 17:41:26 CST 2008


http://bugs.winehq.org/show_bug.cgi?id=11930


Louis Lenders <xerox_xerox2000 at yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xerox_xerox2000 at yahoo.co.uk




--- Comment #3 from Louis Lenders <xerox_xerox2000 at yahoo.co.uk>  2008-03-08 17:41:26 ---
Hi, you filed an exact dupe of your own bug...

I wonder what happens if you apply the patch below. The api is undocument and i
wonder what would happen if we would just hide it.

diff --git a/dlls/kernel32/kernel32.spec b/dlls/kernel32/kernel32.spec
index 112efbf..2267cf3 100644
--- a/dlls/kernel32/kernel32.spec
+++ b/dlls/kernel32/kernel32.spec
@@ -461,8 +461,8 @@
 @ stub GetConsoleFontInfo
 @ stub GetConsoleFontSize
 @ stub GetConsoleHardwareState
-@ stdcall GetConsoleInputExeNameA(long ptr)
-@ stdcall GetConsoleInputExeNameW(long ptr)
+#@ stdcall GetConsoleInputExeNameA(long ptr)
+#@ stdcall GetConsoleInputExeNameW(long ptr)
 @ stdcall GetConsoleInputWaitHandle()
 @ stdcall GetConsoleKeyboardLayoutNameA(ptr)
 @ stdcall GetConsoleKeyboardLayoutNameW(ptr)
@@ -550,7 +550,7 @@




If that doean't help,could you apply the path below.
To see to what string the appname exactly resolves to? Attach the console
output to this or the other bug.

diff --git a/dlls/kernel32/console.c b/dlls/kernel32/console.c
index a1e2de6..d0be3fb 100644
--- a/dlls/kernel32/console.c
+++ b/dlls/kernel32/console.c
@@ -1004,7 +1004,7 @@ BOOL WINAPI GetConsoleInputExeNameW(DWORD buflen, LPWSTR
buffer)
     if (buflen > strlenW(input_exe)) strcpyW(buffer, input_exe);
     else SetLastError(ERROR_BUFFER_OVERFLOW);
     RtlLeaveCriticalSection(&CONSOLE_CritSect);
-
+FIXME("%s\n",debugstr_w(buffer));
     return TRUE;
 }


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list