-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed an issue where engine would crash randomly, or when changing sc…
…enes When a RPC client is destroyed, there could be an issue where its Conduits would be destroyed, and then FRunnableThread would try to access them, crashing the engine in process. To mitigate this, BeginDestroy, which is called before destructor, would Stop the RPC client; also, FRunnableThread is stored via an Atomic; this forbids synchronization issues with multiple calls to Stop()
- Loading branch information
1 parent
c6cc028
commit a70bc9f
Showing
2 changed files
with
28 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters