cberner / raptorq

Rust implementation of RaptorQ (RFC6330)
Apache License 2.0
264 stars 47 forks source link

Fix panic in graph traversal #121

Closed cberner closed 3 years ago

cberner commented 3 years ago

There was an off-by-one error in the initialization of storage for connected components, such that if there were the same number of connected components as nodes it would cause an index out of bounds error

Fixes #120