summaryrefslogtreecommitdiff
path: root/src/emap/send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emap/send.c')
-rw-r--r--src/emap/send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emap/send.c b/src/emap/send.c
index b6f3d92..bf4b208 100644
--- a/src/emap/send.c
+++ b/src/emap/send.c
@@ -141,7 +141,7 @@ void send_mapmask(int fd, int mask)
void send_mapmask_brodcast(const int map, const int mask)
{
- struct block_list bl;
+ struct block_list bl = {0};
char buf[10];
bl.m = map;
@@ -304,7 +304,7 @@ void send_changemusic_brodcast(const int map, const char *music)
if (!music)
return;
- struct block_list bl;
+ struct block_list bl = {0};
const int sz = (int)strlen(music) + 5;
char *buf;