Skip to content

releases/mcap-cli/v0.0.38

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Nov 21:53
· 149 commits to main since this release
9c4d571
cli: fix segfault bug when using filter args (#1011)

### Public-Facing Changes

Fixes bug where the MCAP cli would segfault when using `filter -y` or
`filter -n`.
### Description

Previously the `compileMatchers` function would build an array of
matchers by appending to it, but the array was already initialized with
a non-zero length, resulting in the first N entries of that array being
uninitialized matchers. This caused a segfault when it came time to use
those matchers.
<!-- Link relevant Github issues. Use `Fixes #1234` to auto-close the
issue after merging. -->