]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - host.c
fix parser bug that read scale into alpha in PROTOCOL_DARKPLACES5
[xonotic/darkplaces.git] / host.c
diff --git a/host.c b/host.c
index b1ed19b011dbe26d408ea27d1d0d3229965e3c8e..ee9248670c5c4feeca09c705faee3e68590ea68b 100644 (file)
--- a/host.c
+++ b/host.c
@@ -455,8 +455,12 @@ void SV_DropClient(qboolean crash)
        NetConn_Heartbeat(1);
 
        // free the client now
+       if (host_client->entitydatabase)
+               EntityFrame_FreeDatabase(host_client->entitydatabase);
        if (host_client->entitydatabase4)
                EntityFrame4_FreeDatabase(host_client->entitydatabase4);
+       if (host_client->entitydatabase5)
+               EntityFrame5_FreeDatabase(host_client->entitydatabase5);
        // clear the client struct (this sets active to false)
        memset(host_client, 0, sizeof(*host_client));
 }