Diff

init.lua @ 132:b38397163737

verse: Log error and return when trying to close a closed connection
author Matthew Wild <mwild1@gmail.com>
date Mon, 13 Sep 2010 14:49:30 +0100
parent 126:fa3ddadb8364
child 135:8adf5fb27ce3
line wrap: on
line diff
--- a/init.lua	Mon Sep 13 14:48:10 2010 +0100
+++ b/init.lua	Mon Sep 13 14:49:30 2010 +0100
@@ -83,6 +83,10 @@
 end
 
 function stream:close()
+	if not self.conn then 
+		verse.log("error", "Attempt to close disconnected connection - possibly a bug");
+		return;
+	end
 	local on_disconnect = self.conn.disconnect();
 	self.conn:close();
 	on_disconnect(conn, reason);