1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-30 19:26:37 +02:00

Zero memory in make_link() - needed since memory changes of today.

This commit is contained in:
Bram Matthys
2019-09-14 21:03:12 +02:00
parent 7c9a188cb7
commit 2b2fb8906e
+1
View File
@@ -423,6 +423,7 @@ Link *make_link(void)
#ifdef DEBUGMODE
links.inuse++;
#endif
memset(lp, 0, sizeof(Link));
return lp;
}