mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +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:
@@ -12,7 +12,7 @@
|
||||
#pragma once
|
||||
|
||||
#define IsConsoleHandle(h) \
|
||||
(((ULONG_PTR)(h) & 0x3) == 0x3)
|
||||
(((ULONG_PTR)(h) & 0x10000003) == 0x3)
|
||||
|
||||
#endif // _CONSOLE_H
|
||||
|
||||
|
||||
Reference in New Issue
Block a user