summaryrefslogtreecommitdiff
path: root/src/qcommon
diff options
context:
space:
mode:
authorThilo Schulz <arny@ats.s.bawue.de>2011-06-25 09:05:57 +0000
committerTim Angus <tim@ngus.net>2013-01-10 21:52:53 +0000
commitacfa06f0d2955e443ab71d3289c9d59a36374566 (patch)
tree80f438ec96f04ee3ae4461df3cfd318f38b51b3e /src/qcommon
parent6635ea88585693a3aa1aa4c6594c6ba738cb76d3 (diff)
Add forced VM unloading to Com_Quit_f
Diffstat (limited to 'src/qcommon')
-rw-r--r--src/qcommon/common.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qcommon/common.c b/src/qcommon/common.c
index acf1b2f0..4a0e48ad 100644
--- a/src/qcommon/common.c
+++ b/src/qcommon/common.c
@@ -361,8 +361,14 @@ void Com_Quit_f( void ) {
// don't try to shutdown if we are in a recursive error
char *p = Cmd_Args( );
if ( !com_errorEntered ) {
+ // Some VMs might execute "quit" command directly,
+ // which would trigger an unload of active VM error.
+ // Sys_Quit will kill this process anyways, so
+ // a corrupt call stack makes no difference
+ VM_Forced_Unload_Start();
SV_Shutdown (p[0] ? p : "Server quit");
CL_Shutdown (p[0] ? p : "Client quit", qtrue);
+ VM_Forced_Unload_Done();
Com_Shutdown ();
FS_Shutdown(qtrue);
}