Browse Source

Fix error handling

Nathaniel van Diepen 7 years ago
parent
commit
3713605479
1 changed files with 3 additions and 2 deletions
  1. 3 2
      Net/socket.class.php

+ 3 - 2
Net/socket.class.php

@@ -76,10 +76,11 @@
 						chmod($this->address, 0702);
 					}elseif(function_exists('posix_mkfifo')){
 						posix_mkfifo($this->address, 0702);
-					}else{
-						throw new \Exception('Unable to create socket file');
 					}
 					$res = socket_bind($this->socket, $this->address);
+					if(!file_exists($this->address)){
+						throw new \Exception('Unable to create socket file');
+					}
 				}else{
 					$res = socket_bind($this->socket, $this->address, $this->port);
 				}