aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-12-09 10:04:35 +0100
committerMarvin Borner2020-12-09 10:04:35 +0100
commit8587e297ab7aa5b43a913f0e20cfe5edee18f075 (patch)
tree3cae069a6cf8b48a28bee62e1d584617f85d624e
parent2c50bdd990492144f10c926c30701a25ae93c6bb (diff)
Fixed null socket loop
-rw-r--r--libnet/inc/net.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libnet/inc/net.h b/libnet/inc/net.h
index 1b6a17d..e5190c7 100644
--- a/libnet/inc/net.h
+++ b/libnet/inc/net.h
@@ -46,6 +46,8 @@ static inline int net_connect(struct socket *socket, u32 ip_addr, u16 dst_port,
static inline int net_close(struct socket *socket)
{
+ if (!socket)
+ return 0;
int res = 0;
while (socket->state == S_CLOSING || !(res = (int)sys1(SYS_NET_CLOSE, (int)(socket))))
yield();