From b5a45d73ab2df78b85b03e7cf252dd12b0634f05 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 13 Mar 2009 08:18:30 +0000 Subject: Corrected a potentially uninitialized variable in sv_parse (bugreport:2860). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13581 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/strlib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/common/strlib.c') diff --git a/src/common/strlib.c b/src/common/strlib.c index 648a06d18..9b97aabba 100644 --- a/src/common/strlib.c +++ b/src/common/strlib.c @@ -872,6 +872,8 @@ bool sv_readdb(const char* directory, const char* filename, char delim, int minc int columns; char path[1024], line[1024]; + snprintf(path, sizeof(path), "%s/%s", directory, filename); + if( maxcols > ARRAYLENGTH(fields)-1 ) { ShowError("sv_readdb: Insufficient column storage in parser for file \"%s\" (want %d, have only %d). Increase the capacity in the source code please.\n", path, maxcols, ARRAYLENGTH(fields)-1); @@ -879,7 +881,6 @@ bool sv_readdb(const char* directory, const char* filename, char delim, int minc } // open file - snprintf(path, sizeof(path), "%s/%s", directory, filename); fp = fopen(path, "r"); if( fp == NULL ) { -- cgit v1.2.3-60-g2f50