提交 96208cb1 编写于 作者: M Martin Olsson 提交者: Rich Salz

RT2848: Remove extra NULL check

Don't need to check auth for NULL since we did when we
assigned to it.
Reviewed-by: NEmilia Kasper <emilia@openssl.org>
上级 1afd7fa9
......@@ -2133,7 +2133,7 @@ krb5_error_code kssl_check_authent(
#ifdef KSSL_DEBUG
printf("kssl_check_authent: returns %d for client time ", *atimep);
if (auth && auth->ctime && auth->ctime->length && auth->ctime->data)
if (auth->ctime && auth->ctime->length && auth->ctime->data)
printf("%.*s\n", auth->ctime->length, auth->ctime->data);
else printf("NULL\n");
#endif /* KSSL_DEBUG */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册