dharple / detox

Tames problematic filenames
BSD 3-Clause "New" or "Revised" License
318 stars 19 forks source link

double free or corruption (out) when using custom sequence #96

Open aidan-walden opened 1 year ago

aidan-walden commented 1 year ago

Running detox on a large directory (2TB) recursively and running into this error with my custom sequence. Happens in dry-run or during actual run. Does not happen when using inline mode for testing. Sequence below.

sequence custom {
        uncgi;
        utf_8{
                filename "/home/aidan/clean/unicode.tbl";
        };
        safe {
                filename "/home/aidan/clean/safe.tbl";
        };
        wipeup {
                remove_trailing;
        };
        max_length {
                length 64;
        };
};

ZIP file containing both tables Thank you