[kdenlive] [Bug 507568] macOS melt rendering crash at arbitrary frame - EXC_BAD_ACCESS (SIGSEGV)

bugzilla_noreply at kde.org bugzilla_noreply at kde.org
Mon Jul 28 11:20:05 BST 2025


https://bugs.kde.org/show_bug.cgi?id=507568

--- Comment #14 from rich at racitup.com ---
Modifying Info.plist did not fix it

This did fix it:

force_locale.c :

#include <locale.h>
#include <stdlib.h>

__attribute__((constructor))
void force_locale() {
    setenv("LANG", "en_GB.UTF-8", 1);
    setenv("LC_ALL", "en_GB.UTF-8", 1);
    setlocale(LC_ALL, "en_GB.UTF-8");
}


$$ clang -dynamiclib -o force_locale.dylib force_locale.c

$$ DYLD_INSERT_LIBRARIES=$PWD/force_locale.dylib
/Applications/kdenlive.app/Contents/MacOS/kdenlive

-- 
You are receiving this mail because:
You are watching all bug changes.



More information about the kde-mac mailing list