From: havoc Date: Wed, 9 Jun 2010 21:05:14 +0000 (+0000) Subject: fix pqrcon rcon_password bug introduced in r9420 (was not X-Git-Tag: xonotic-v0.1.0preview~230^2~245 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f538c7b87b0da3af31b454f3e83aa1f32f32c1dd;p=xonotic%2Fdarkplaces.git fix pqrcon rcon_password bug introduced in r9420 (was not nul-terminating a string) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10233 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host_cmd.c b/host_cmd.c index 202e4d98..530cf4e4 100644 --- a/host_cmd.c +++ b/host_cmd.c @@ -2492,6 +2492,7 @@ void Host_PQRcon_f (void) MSG_WriteLong (&net_message, 0); MSG_WriteByte (&net_message, CCREQ_RCON); SZ_Write(&net_message, (void*)rcon_password.string, n); + MSG_WriteByte (&net_message, 0); // terminate the (possibly partial) string MSG_WriteString (&net_message, Cmd_Args()); StoreBigLong(net_message.data, NETFLAG_CTL | (net_message.cursize & NETFLAG_LENGTH_MASK)); NetConn_Write(mysocket, net_message.data, net_message.cursize, &to);