From b795233e374987f4c427f59922f271810f937eef Mon Sep 17 00:00:00 2001 From: ultramage Date: Sun, 7 Jan 2007 16:49:03 +0000 Subject: Undid the memset->malloc_set replacement git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9626 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/chrif.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/map/chrif.c') diff --git a/src/map/chrif.c b/src/map/chrif.c index cbce3b6c8..ec0ab6aa6 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -1168,9 +1168,9 @@ int chrif_recvfamelist(int fd) int total = 0, len = 8; RFIFOHEAD(fd); - malloc_tsetdword (smith_fame_list, 0, sizeof(smith_fame_list)); - malloc_tsetdword (chemist_fame_list, 0, sizeof(chemist_fame_list)); - malloc_tsetdword (taekwon_fame_list, 0, sizeof(taekwon_fame_list)); + memset (smith_fame_list, 0, sizeof(smith_fame_list)); + memset (chemist_fame_list, 0, sizeof(chemist_fame_list)); + memset (taekwon_fame_list, 0, sizeof(taekwon_fame_list)); size = RFIFOW(fd, 6); //Blacksmith block size for (num = 0; len < size && num < MAX_FAME_LIST; num++) { @@ -1317,7 +1317,7 @@ int chrif_load_scdata(int fd) } fclose(fp); } else { - malloc_tsetdword(buf, 0, sizeof(buf)); //No data found, send empty packets? + memset(buf, 0, sizeof(buf)); //No data found, send empty packets? WFIFOW(char_fd,8) = sizeof(buf) + 10; memcpy(WFIFOP(char_fd,10), buf, sizeof(buf)); } -- cgit v1.2.3-60-g2f50