Переглянути джерело

Added NULL initialization to info variable in map_readfromcache() to satiate compiler. (bugreport:4399)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/renewal@14422 54d463be-8e91-2dee-dedb-b68131a5f0ec
Paradox924X 14 роки тому
батько
коміт
48ea3119dc
2 змінених файлів з 2 додано та 1 видалено
  1. 1 0
      Changelog-Trunk.txt
  2. 1 1
      src/map/map.c

+ 1 - 0
Changelog-Trunk.txt

@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK.  ALL UNTESTED BUGFIXES/FEATURES GO
 IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
 
 2010/10/10
+	* Added NULL initialization to info variable in map_readfromcache() to satiate compiler. (bugreport:4399) [Paradox924X]
 	* Applied Ai4rei's patch to eliminate unnecessary and redundant castle data saving. (bugreport:4471) [Paradox924X]
 	* Added a missing const qualifier to a variable. (bugreport:4472) [Paradox924X]
 	* Rev. 14418 Follow up from r14413, should take care of the errors from bugreport:4472. [L0ne_W0lf]

+ 1 - 1
src/map/map.c

@@ -2707,7 +2707,7 @@ int map_readfromcache(struct map_data *m, char *buffer, char *decode_buffer)
 {
 	int i;
 	struct map_cache_main_header *header = (struct map_cache_main_header *)buffer;
-	struct map_cache_map_info *info;
+	struct map_cache_map_info *info = NULL;
 	unsigned char *p = buffer + sizeof(struct map_cache_main_header);
 
 	for(i = 0; i < header->map_count; i++) {