1
1

Fix a memory corruption in parse_status_msg

Signed-off-by: Vic Lee <llyzs@163.com>
Signed-off-by: Andreas Schneider <mail@cynapses.org>
Этот коммит содержится в:
Vic Lee 2009-10-11 14:44:40 +08:00 коммит произвёл Andreas Schneider
родитель 26a5294116
Коммит 02b3104215

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

@ -733,7 +733,7 @@ static sftp_status_message parse_status_msg(sftp_message msg){
return NULL;
}
status = malloc(sizeof(struct sftp_message_struct));
status = malloc(sizeof(struct sftp_status_message_struct));
if (status == NULL) {
return NULL;
}