diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-10-11 03:58:18 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-10-11 03:58:18 +0000 |
commit | 8f4b6a735e96dcf5ae00b2eb755914c30be68a68 (patch) | |
tree | ae2052924bd84253dc8e2dd03be98c90f56648b2 /src/map/map.c | |
parent | 61ae7c610edea81a54ca2f98164cd04a9687f2c9 (diff) | |
download | hercules-8f4b6a735e96dcf5ae00b2eb755914c30be68a68.tar.gz hercules-8f4b6a735e96dcf5ae00b2eb755914c30be68a68.tar.bz2 hercules-8f4b6a735e96dcf5ae00b2eb755914c30be68a68.tar.xz hercules-8f4b6a735e96dcf5ae00b2eb755914c30be68a68.zip |
Added NULL initialization to info variable in map_readfromcache() to satiate compiler. (bugreport:4399)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14422 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index f7f1f3a49..be50cf887 100644 --- a/src/map/map.c +++ b/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++) { |