diff options
author | Tom Barham <me@cpdt.dev> | 2022-06-15 08:05:06 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-15 00:05:06 +0200 |
commit | 25dbf729cfc75107a0fcf0186924b58ecc05214b (patch) | |
tree | 313d033ea3f557a6a537f46d0b8fd6eb3dce9a48 /NorthstarDedicatedTest/dllmain.cpp | |
parent | b84cd76f671e44a686df6f2b36be6642b0bd24a5 (diff) | |
download | NorthstarLauncher-25dbf729cfc75107a0fcf0186924b58ecc05214b.tar.gz NorthstarLauncher-25dbf729cfc75107a0fcf0186924b58ecc05214b.zip |
Fix segfault on badly formed compressed packets (#160)
* Fix segfault on badly formed compressed packets
* Remove superfluous line
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 62094b4e..98ac97bd 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -267,6 +267,7 @@ bool InitialiseNorthstar() AddDllLoadCallback("engine.dll", InitialiseSharedMasterServer); AddDllLoadCallback("server.dll", InitialiseMiscServerScriptCommand); AddDllLoadCallback("server.dll", InitialiseMiscServerFixes); + AddDllLoadCallback("engine.dll", InitialiseMiscEngineServerFixes); AddDllLoadCallback("server.dll", InitialiseBuildAINFileHooks); AddDllLoadCallback("engine.dll", InitialisePlaylistHooks); |