Fix benign memory leak in uxpgnt.

No real need - when we fail to free this strbuf, we were about to exit
the whole process anyway - but it keeps Leak Sanitiser off my back, as
usual.
This commit is contained in:
Simon Tatham 2020-02-15 15:55:30 +00:00
Родитель 230c8ef4ee
Коммит 891bf36600
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1191,6 +1191,7 @@ void run_agent(FILE *logfp, const char *symlink_path)
exit(1);
}
strbuf_free(upc->prompt_buf);
conf_free(conf);
}