Hans Leidekker (@hans) commented about dlls/secur32/schannel.c:
if (!context_handle) return SEC_E_INVALID_HANDLE; ctx = schan_get_object(context_handle->dwLower, SCHAN_HANDLE_CTX);
- if (!ctx) return SEC_E_INVALID_HANDLE;
You could be shortened to something like this: ``` if (!context_handle || !(ctx = schan_get_object(context_handle->dwLower, SCHAN_HANDLE_CTX)) return SEC_E_INVALID_HANDLE; ```