commit | 5b1f3b14caed3aeaeac2eb09846857106ecce757 | [log] [tgz] |
---|---|---|
author | Eric Pouech <eric.pouech@wanadoo.fr> | Sat Nov 04 11:52:44 2006 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Nov 15 11:24:41 2006 +0100 |
tree | 6bef0f8460caa5cb59bd6e815cc6685d3a4f63c6 | |
parent | 9bf51405751c0d850cd52831ed116d001e0f2ad2 [diff] [blame] |
ntdll: Fixed returned status for NtQueryThreadInformation's ThreadDescriptorTable (spotted by Peter Oberndorfer).
diff --git a/server/ptrace.c b/server/ptrace.c index ef72713..26a4042 100644 --- a/server/ptrace.c +++ b/server/ptrace.c
@@ -445,7 +445,7 @@ } if (entry >= 8192) { - set_error( STATUS_INVALID_PARAMETER ); /* FIXME */ + set_error( STATUS_ACCESS_VIOLATION ); return; } if (suspend_for_ptrace( thread ))