am 4e0ada97: Properly initialize struct irec pointers after malloc()

* commit '4e0ada9701a819193e25f58e196fc47f9ad8c606':
  Properly initialize struct irec pointers after malloc()
diff --git a/src/network.c b/src/network.c
index cb2001d..e24ec3a 100755
--- a/src/network.c
+++ b/src/network.c
@@ -309,6 +309,7 @@
   l->tcpfd = tcpfd;
   l->tftpfd = -1;
   l->family = AF_INET6;
+  l->iface = NULL;
   l->next = NULL;
   *link = l;
   
@@ -381,6 +382,7 @@
   l->fd = fd;
   l->tcpfd = tcpfd;
   l->tftpfd = tftpfd;
+  l->iface = NULL;
   l->next = l6;
 
   return l;