mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[CONSRV]
I replaced by error the mask 0x10000003 by 0x3, which had as an effect to match handles of value 0xffffffff (invalid_handle_value). Fichtre ! svn path=/branches/ros-csrss/; revision=58064
This commit is contained in:
parent
c0399e88a6
commit
2e57ad7cbd
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
#pragma once
|
||||
|
||||
#define IsConsoleHandle(h) \
|
||||
(((ULONG_PTR)(h) & 0x3) == 0x3)
|
||||
(((ULONG_PTR)(h) & 0x10000003) == 0x3)
|
||||
|
||||
#endif // _CONSOLE_H
|
||||
|
||||
|
|
Loading…
Reference in a new issue