aboutsummaryrefslogtreecommitdiffhomepage
path: root/host.c
diff options
context:
space:
mode:
authorLee Salzman <[email protected]>2012-09-11 02:28:50 +0300
committerLee Salzman <[email protected]>2012-09-11 02:28:50 +0300
commit71b75500495d5e11ba5fbe937e421b349d3d3059 (patch)
treef135a7f63f295884ac0657aea752f9b36dc1fc30 /host.c
parentbe852c5d8ba1c4e097cc86d49ddc4998a486c0eb (diff)
downloadenet-71b75500495d5e11ba5fbe937e421b349d3d3059.tar.gz
enet-71b75500495d5e11ba5fbe937e421b349d3d3059.zip
treat destroying NULL as no-op
Diffstat (limited to 'host.c')
-rw-r--r--host.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/host.c b/host.c
index ec8731d..33c808a 100644
--- a/host.c
+++ b/host.c
@@ -135,6 +135,9 @@ enet_host_destroy (ENetHost * host)
{
ENetPeer * currentPeer;
+ if (host == NULL)
+ return;
+
enet_socket_destroy (host -> socket);
for (currentPeer = host -> peers;