Fix a memory leak in openssh_loadpub

The line read from the input file was not freed after successfully
loading an OpenSSH key.
This commit is contained in:
Tim Kosse 2017-01-23 19:10:40 +01:00 коммит произвёл Simon Tatham
Родитель 29d805a49e
Коммит 737cb2d24e
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1091,6 +1091,7 @@ unsigned char *openssh_loadpub(FILE *fp, char **algorithm,
*commentptr = comment;
else
sfree(comment);
sfree(line);
return pubblob;
error: