[quake3-commits] r1763 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sun Jan 3 17:37:14 EST 2010
Author: tma
Date: 2010-01-03 17:37:14 -0500 (Sun, 03 Jan 2010)
New Revision: 1763
Modified:
trunk/code/server/sv_main.c
Log:
* Fix some compiler warnings
Modified: trunk/code/server/sv_main.c
===================================================================
--- trunk/code/server/sv_main.c 2010-01-03 22:12:20 UTC (rev 1762)
+++ trunk/code/server/sv_main.c 2010-01-03 22:37:14 UTC (rev 1763)
@@ -381,8 +381,8 @@
================
*/
static long SVC_HashForAddress( netadr_t address ) {
- byte *ip;
- size_t size;
+ byte *ip = NULL;
+ size_t size = 0;
int i;
long hash = 0;
More information about the quake3-commits
mailing list