From 082687fc204c7b40bf676ad710c2488048571b73 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Wed, 22 Aug 2012 20:33:06 +0000 Subject: Major cleanup all over the place, made possible by mkbu95's scan-build report he provided us with. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16687 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/char/inter.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/char/inter.c') diff --git a/src/char/inter.c b/src/char/inter.c index 80dc9372c..2b7872eb9 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -378,11 +378,10 @@ const char * geoip_countryname[253] = {"Unknown","Asia/Pacific Region","Europe", unsigned char *geoip_cache; void geoip_readdb(void){ struct stat bufa; - size_t fileReadCount; FILE *db=fopen("./db/GeoIP.dat","r"); fstat(fileno(db), &bufa); geoip_cache = (unsigned char *) malloc(sizeof(unsigned char) * bufa.st_size); - fileReadCount = fread(geoip_cache, sizeof(unsigned char), bufa.st_size, db); + (void)fread(geoip_cache, sizeof(unsigned char), bufa.st_size, db); fclose(db); ShowStatus("Finished Reading "CL_GREEN"GeoIP"CL_RESET" Database.\n"); } @@ -392,7 +391,7 @@ const char* geoip_getcountry(uint32 ipnum){ int depth; unsigned int x; unsigned char stack_buffer[6]; - const unsigned char *buf = stack_buffer; + const unsigned char *buf; unsigned int offset = 0; for (depth = 31; depth >= 0; depth--) { -- cgit v1.2.3-60-g2f50