diff options
author | Lee Salzman <[email protected]> | 2012-09-11 02:28:50 +0300 |
---|---|---|
committer | Lee Salzman <[email protected]> | 2012-09-11 02:28:50 +0300 |
commit | 71b75500495d5e11ba5fbe937e421b349d3d3059 (patch) | |
tree | f135a7f63f295884ac0657aea752f9b36dc1fc30 /host.c | |
parent | be852c5d8ba1c4e097cc86d49ddc4998a486c0eb (diff) | |
download | enet-71b75500495d5e11ba5fbe937e421b349d3d3059.tar.gz enet-71b75500495d5e11ba5fbe937e421b349d3d3059.zip |
treat destroying NULL as no-op
Diffstat (limited to 'host.c')
-rw-r--r-- | host.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -135,6 +135,9 @@ enet_host_destroy (ENetHost * host) { ENetPeer * currentPeer; + if (host == NULL) + return; + enet_socket_destroy (host -> socket); for (currentPeer = host -> peers; |