]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Fix uninitialized msg.allowoverflow in SV_SendClientDatagram
authorres <res@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 25 Jan 2008 23:51:59 +0000 (23:51 +0000)
committerres <res@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 25 Jan 2008 23:51:59 +0000 (23:51 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8014 d7cf8633-e32d-0410-b094-e92efae38249

sv_main.c

index 864695fc471cb31d163a1fb653224afe0e03adbe..4fadaff303b2031eb6a7d8a2e17ae4bbc3e75532 100644 (file)
--- a/sv_main.c
+++ b/sv_main.c
@@ -1801,6 +1801,7 @@ static void SV_SendClientDatagram (client_t *client)
        msg.data = sv_sendclientdatagram_buf;
        msg.maxsize = maxsize;
        msg.cursize = 0;
+       msg.allowoverflow = false;
 
        if (host_client->spawned)
        {