summaryrefslogtreecommitdiff
path: root/core/Messenger.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-08-17 11:30:48 -0400
committerirungentoo <irungentoo@gmail.com>2013-08-17 11:30:48 -0400
commitf259ab5fa7a7175869134c05a92f569896fe85a2 (patch)
tree3f34e801bb8d7da5f9f0de4d4c79596d4202bdd3 /core/Messenger.c
parent7d092c3467fbbcf3639ed2c698659c56b2509c31 (diff)
Fixed bug.
Diffstat (limited to 'core/Messenger.c')
-rw-r--r--core/Messenger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Messenger.c b/core/Messenger.c
index 2c9e134b..2b5c8241 100644
--- a/core/Messenger.c
+++ b/core/Messenger.c
@@ -39,7 +39,7 @@ int realloc_friendlist(Messenger *m, uint32_t num)
39{ 39{
40 Friend *newfriendlist = realloc(m->friendlist, num * sizeof(Friend)); 40 Friend *newfriendlist = realloc(m->friendlist, num * sizeof(Friend));
41 41
42 if (newfriendlist == NULL) 42 if (newfriendlist == NULL && num != 0)
43 return -1; 43 return -1;
44 44
45 m->friendlist = newfriendlist; 45 m->friendlist = newfriendlist;