Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(handlers): fix extfs handler for samples with spaces in their names.
The Command extractor definition for our extfs handler was defined so that a sample with space in its name would make debugfs go haywire since the path was not properly quoted. debugfs -R 'rdump / a_sample_with_no_space.ext4_extract' sample.ext4 -> works debugfs -R 'rdump / a sample with space.ext4_extract' sample.ext4 -> does not work Fixed by quoting the output dir :)
- Loading branch information