diff options
author | Marvin Borner | 2020-12-09 10:04:35 +0100 |
---|---|---|
committer | Marvin Borner | 2020-12-09 10:04:35 +0100 |
commit | 8587e297ab7aa5b43a913f0e20cfe5edee18f075 (patch) | |
tree | 3cae069a6cf8b48a28bee62e1d584617f85d624e | |
parent | 2c50bdd990492144f10c926c30701a25ae93c6bb (diff) |
Fixed null socket loop
-rw-r--r-- | libnet/inc/net.h | 2 |
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(); |