include: Fix a typo in the SecInvalidateHandle macro in sspi.h.
This commit is contained in:
parent
a9f214cb0d
commit
d5da94011e
|
@ -54,7 +54,7 @@ typedef struct _SecHandle
|
||||||
#define SecInvalidateHandle(x) do { \
|
#define SecInvalidateHandle(x) do { \
|
||||||
((PSecHandle)(x))->dwLower = ((ULONG_PTR)((INT_PTR)-1)); \
|
((PSecHandle)(x))->dwLower = ((ULONG_PTR)((INT_PTR)-1)); \
|
||||||
((PSecHandle)(x))->dwUpper = ((ULONG_PTR)((INT_PTR)-1)); \
|
((PSecHandle)(x))->dwUpper = ((ULONG_PTR)((INT_PTR)-1)); \
|
||||||
while (0)
|
} while (0)
|
||||||
|
|
||||||
#define SecIsValidHandle(x) \
|
#define SecIsValidHandle(x) \
|
||||||
((((PSecHandle)(x))->dwLower != ((ULONG_PTR)(INT_PTR)-1)) && \
|
((((PSecHandle)(x))->dwLower != ((ULONG_PTR)(INT_PTR)-1)) && \
|
||||||
|
|
Loading…
Reference in New Issue