1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

pki: null ptr check

This commit is contained in:
Aris Adamantiadis
2011-09-18 20:29:39 +02:00
parent 09b33b1b6e
commit d24e353e38

View File

@@ -1233,7 +1233,11 @@ ssh_string ssh_srv_pki_do_sign_sessionid(ssh_session session,
if (ctx == NULL) {
return NULL;
}
sha1_update(ctx, crypto->session_id, SHA_DIGEST_LEN);
if (crypto->session_id == NULL){
ssh_set_error(session,SSH_FATAL,"Missing session_id");
return NULL;
}
sha1_update(ctx, crypto->session_id, crypto->digest_len);
sha1_final(hash, ctx);
#ifdef DEBUG_CRYPTO