diff options
author | Haru <haru@dotalux.com> | 2020-04-06 05:18:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 05:18:14 +0200 |
commit | 1ae5a4cb1003b9c336c315142e66a5e5b7f3ca32 (patch) | |
tree | 74d92f0d0f3cda2a2de3e9d7b2c2b6203afc1e48 /src/map/map.h | |
parent | ab640e4745afdf771709dce826aee97e0e4670fd (diff) | |
parent | 58c4ce73b9fdc1d67a928e37742510bf49bb7dbc (diff) | |
download | hercules-1ae5a4cb1003b9c336c315142e66a5e5b7f3ca32.tar.gz hercules-1ae5a4cb1003b9c336c315142e66a5e5b7f3ca32.tar.bz2 hercules-1ae5a4cb1003b9c336c315142e66a5e5b7f3ca32.tar.xz hercules-1ae5a4cb1003b9c336c315142e66a5e5b7f3ca32.zip |
Merge pull request #2682 from HerculesWS/questinfo_memory_fixes
Questinfo memory violation and handling fixes
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index a876539d0..2de6df2f7 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -846,7 +846,7 @@ struct map_data { } cell_buf; /* questinfo entries list */ - VECTOR_DECL(struct npc_data) qi_list; + VECTOR_DECL(struct npc_data *) qi_list; /* speeds up clif_updatestatus processing by causing hpmeter to run only when someone with the permission can view it */ unsigned short hpmeter_visible; |