diff options
Diffstat (limited to 'tools/firewire/nosy-dump.c')
-rw-r--r-- | tools/firewire/nosy-dump.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/firewire/nosy-dump.c b/tools/firewire/nosy-dump.c index 0bad0a42d772..1d4dd5439d43 100644 --- a/tools/firewire/nosy-dump.c +++ b/tools/firewire/nosy-dump.c | |||
@@ -230,6 +230,11 @@ handle_transaction(struct link_transaction *t) | |||
230 | struct subaction *sa; | 230 | struct subaction *sa; |
231 | int i; | 231 | int i; |
232 | 232 | ||
233 | if (!t->request) { | ||
234 | printf("BUG in handle_transaction\n"); | ||
235 | return; | ||
236 | } | ||
237 | |||
233 | for (i = 0; i < array_length(protocol_decoders); i++) | 238 | for (i = 0; i < array_length(protocol_decoders); i++) |
234 | if (protocol_decoders[i].decode(t)) | 239 | if (protocol_decoders[i].decode(t)) |
235 | break; | 240 | break; |