Diff between 90a490569cb823c4621fea3d6f85c47ad06d2f2e and 4167e89d8fbba56198ae10635182b43106a5faf0

Changed Files

File Additions Deletions Status
monitor/packet.c +3 -1 modified

Full Patch

diff --git a/monitor/packet.c b/monitor/packet.c
index ca7eaea..d5d9060 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -11222,8 +11222,10 @@ static void packet_dequeue_tx(struct timeval *tv, uint16_t handle)
 	}
 
 	frame = queue_pop_head(conn->tx_q);
-	if (!frame)
+	if (!frame) {
+		print_field("#(frame not found)");
 		return;
+	}
 
 	timersub(tv, &frame->tv, &delta);