diff options
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/login.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/login/login.c b/src/login/login.c index 4e1870163..c7440dd4b 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -1025,7 +1025,6 @@ int mmo_auth_new(struct mmo_account* account, char sex, char* email) { if (auth_num >= auth_max) { auth_max += 256; auth_dat = (struct auth_dat*)aRealloc(auth_dat, sizeof(struct auth_dat) * auth_max); - memset(auth_dat, 0, sizeof(struct auth_dat) * auth_max); } memset(&auth_dat[i], '\0', sizeof(struct auth_dat)); |