On 6/27/26 10:41, Filip Kastl wrote:
In my previous patch I changed a parameter of extract_quoted_files from const char * to just char *. I believe that's still the right call
The "const" attribute asserts that the string passed in by address is never modified in this function. It doesn't matter that the source string is in modifiable memory. I'd revert that part of your previous change.
