1
1

messages: Use calloc in ssh_message_new()

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Andreas Schneider 2018-09-28 15:36:28 +02:00
родитель ca425ebe67
Коммит b9ac61d5a3

Просмотреть файл

@ -63,14 +63,15 @@
* @{
*/
static ssh_message ssh_message_new(ssh_session session){
ssh_message msg = malloc(sizeof(struct ssh_message_struct));
if (msg == NULL) {
return NULL;
}
ZERO_STRUCTP(msg);
msg->session = session;
return msg;
static ssh_message ssh_message_new(ssh_session session)
{
ssh_message msg = calloc(1, sizeof(struct ssh_message_struct));
if (msg == NULL) {
return NULL;
}
msg->session = session;
return msg;
}
#ifndef WITH_SERVER