summaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorHaruna <haru@dotalux.com>2015-10-19 20:23:22 +0200
committerHaruna <haru@dotalux.com>2015-10-19 20:23:22 +0200
commitcffb68c6ee66227327e128f86cde8aa843e273d6 (patch)
tree3a8fb83f5c01ff26fa2efb53377f4255d093b00b /src/login
parentb320fdc7451c8643971a8b17c84ec777f9d7ecdf (diff)
parente625d7f186f104316031a39438bf644c67b1f4c4 (diff)
downloadhercules-cffb68c6ee66227327e128f86cde8aa843e273d6.tar.gz
hercules-cffb68c6ee66227327e128f86cde8aa843e273d6.tar.bz2
hercules-cffb68c6ee66227327e128f86cde8aa843e273d6.tar.xz
hercules-cffb68c6ee66227327e128f86cde8aa843e273d6.zip
Merge pull request #804 from 4144/memmanager
Fix reallocating memory without memory manager.
Diffstat (limited to 'src/login')
-rw-r--r--src/login/HPMlogin.c2
-rw-r--r--src/login/account_sql.c2
-rw-r--r--src/login/login.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/login/HPMlogin.c b/src/login/HPMlogin.c
index b900f28fe..5ceb38283 100644
--- a/src/login/HPMlogin.c
+++ b/src/login/HPMlogin.c
@@ -17,7 +17,7 @@
#include "common/db.h"
#include "common/des.h"
#include "common/ers.h"
-#include "common/malloc.h"
+#include "common/memmgr.h"
#include "common/mmo.h"
#include "common/nullpo.h"
#include "common/showmsg.h"
diff --git a/src/login/account_sql.c b/src/login/account_sql.c
index 37837fc35..4efa73e94 100644
--- a/src/login/account_sql.c
+++ b/src/login/account_sql.c
@@ -9,7 +9,7 @@
#include "common/cbasetypes.h"
#include "common/console.h"
-#include "common/malloc.h"
+#include "common/memmgr.h"
#include "common/mmo.h"
#include "common/nullpo.h"
#include "common/showmsg.h"
diff --git a/src/login/login.c b/src/login/login.c
index 1d8ef489a..3ec60f0aa 100644
--- a/src/login/login.c
+++ b/src/login/login.c
@@ -15,7 +15,7 @@
#include "common/conf.h"
#include "common/core.h"
#include "common/db.h"
-#include "common/malloc.h"
+#include "common/memmgr.h"
#include "common/md5calc.h"
#include "common/nullpo.h"
#include "common/random.h"