Fix a double-free in Windows Pageant.

Reported by Colin Harrison; occurred on the error path in which the
user clicks 'cancel' in the passphrase box.
This commit is contained in:
Simon Tatham 2015-10-18 20:22:05 +01:00
Родитель df006f36ce
Коммит c01dff38a3
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -377,11 +377,11 @@ static void win_add_keyfile(Filename *filename)
NULL, PassphraseProc, (LPARAM) &pps);
passphrase_box = NULL;
sfree(err);
if (!dlgret)
goto done; /* operation cancelled */
sfree(err);
assert(passphrase != NULL);
ret = pageant_add_keyfile(filename, passphrase, &err);