Added missing fclose to TorProcess::tryReadControlPort

This commit is contained in:
thunder2 2021-12-21 12:44:59 +01:00
parent 15d56f01ac
commit 5b8ac7e49b

View File

@ -412,6 +412,8 @@ bool TorProcess::tryReadControlPort()
ByteArray data = ByteArray((unsigned char*)line,size).trimmed();
free(line);
fclose(file);
int p;
if (data.startsWith("PORT=") && (p = data.lastIndexOf(':')) > 0) {
mControlHost = data.mid(5, p - 5).toString();