hnbgw.c: Fix double-free in wait-queue transmit code
diff --git a/src/hnbgw.c b/src/hnbgw.c
index 0839e69..0875524 100644
--- a/src/hnbgw.c
+++ b/src/hnbgw.c
@@ -92,8 +92,7 @@
 
 	rc = sctp_send(fd->fd, msgb_data(msg), msgb_length(msg),
 			&sinfo, 0);
-	msgb_free(msg);
-
+	/* we don't need to msgb_free(), write_queue does this for us */
 	return rc;
 }