diff options
author | Haru <haru@dotalux.com> | 2015-05-19 02:33:27 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-05-19 03:07:38 +0200 |
commit | 0c1ce8e1c427d665c207512a0e858872ef80672d (patch) | |
tree | 9e5a29d39875fe0cf74d93400b2a815fa92c3733 /src/map/script.c | |
parent | 46c6e66222cc3aaf1b1ea08794a6b818d7065b67 (diff) | |
download | hercules-0c1ce8e1c427d665c207512a0e858872ef80672d.tar.gz hercules-0c1ce8e1c427d665c207512a0e858872ef80672d.tar.bz2 hercules-0c1ce8e1c427d665c207512a0e858872ef80672d.tar.xz hercules-0c1ce8e1c427d665c207512a0e858872ef80672d.zip |
Fixed some issues reported by coverity scan [1/3]
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index a86ccfdc9..1559a2cfa 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -17288,7 +17288,9 @@ BUILDIN(waitingroom2bg) { return true; } + Assert_retr(false, cd->users < MAX_CHAT_USERS); n = cd->users; // This is always < MAX_CHAT_USERS + for (i = 0; i < n && i < MAX_BG_MEMBERS; i++) { struct map_session_data *sd = cd->usersd[i]; if (sd != NULL && bg->team_join(bg_id, sd)) |