Fix cluster test failure (not real issue)

Former-commit-id: 161d3a35ff2be2aa761f6fb0167dfc4aac4251c6
This commit is contained in:
John Sully 2019-04-03 00:11:34 -04:00
parent ea516dad36
commit 5656a917c7

View File

@ -2443,7 +2443,10 @@ NULL
if (c == client) {
close_this_client = 1;
} else {
freeClientAsync(client);
if (FCorrectThread(client))
freeClient(client);
else
freeClientAsync(client);
}
killed++;
}