Diff between 720e8ec9760b8d8bfb565e535bd311bbc8273a76 and 8a708aa5f04613768e903d243a7261efd202ea88

Changed Files

File Additions Deletions Status
monitor/att.c +2 -1 modified

Full Patch

diff --git a/monitor/att.c b/monitor/att.c
index a23347e..73a6165 100644
--- a/monitor/att.c
+++ b/monitor/att.c
@@ -4646,7 +4646,8 @@ static void print_notify(const struct l2cap_frame *frame, uint16_t handle,
 		frame = &clone;
 	}
 
-	handler->notify(frame);
+	if (handler->notify)
+		handler->notify(frame);
 }
 
 static void att_handle_value_notify(const struct l2cap_frame *frame)