1
1

options: Fix a memory in ssh_options_copy() on error.

Этот коммит содержится в:
Andreas Schneider 2012-10-05 11:11:51 +02:00
родитель cddfe602cc
Коммит 213321d706

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

@ -112,6 +112,7 @@ int ssh_options_copy(ssh_session src, ssh_session *dest) {
rc = ssh_list_append(new->opts.identity, id);
if (rc < 0) {
free(id);
ssh_free(new);
return -1;
}