Fix order of operations error when shutting down remote replay

This commit is contained in:
baldurk
2020-10-28 12:08:36 +00:00
parent 6b67a6c13b
commit 40002634ad
+2 -2
View File
@@ -1671,12 +1671,12 @@ rdcpair<ReplayStatus, IReplayController *> RemoteServer::OpenCapture(
void RemoteServer::CloseCapture(IReplayController *rend)
{
rend->Shutdown();
{
WRITE_DATA_SCOPE();
SCOPED_SERIALISE_CHUNK(eRemoteServer_CloseLog);
}
rend->Shutdown();
}
rdcstr RemoteServer::DriverName()