Commit d5da9401 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Fix a typo in the SecInvalidateHandle macro in sspi.h.

parent a9f214cb
......@@ -54,7 +54,7 @@ typedef struct _SecHandle
#define SecInvalidateHandle(x) do { \
((PSecHandle)(x))->dwLower = ((ULONG_PTR)((INT_PTR)-1)); \
((PSecHandle)(x))->dwUpper = ((ULONG_PTR)((INT_PTR)-1)); \
while (0)
} while (0)
#define SecIsValidHandle(x) \
((((PSecHandle)(x))->dwLower != ((ULONG_PTR)(INT_PTR)-1)) && \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment