Closed edkelly303 closed 9 years ago
In line 415:
payload_size = frame_address_struct.size - payload_start
Should be:
payload_size = frame_header_struct.size - payload_start
Otherwise it crashes if you try to parse a message type that isn't in the messages dictionary.
Thanks! Fixed in 32ea5597e1e0d79e042c94d40946374a357af30d
In line 415:
Should be:
Otherwise it crashes if you try to parse a message type that isn't in the messages dictionary.