1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

tests/fuzz: initialize gettext before UTF-8 tests

This commit is contained in:
Sébastien Helleu
2025-05-08 17:02:37 +02:00
parent 7341d670b3
commit 675c3279ac
+3
View File
@@ -30,6 +30,8 @@ extern "C"
#include "src/core/core-config.h"
#include "src/core/core-utf8.h"
extern void weechat_init_gettext (void);
}
extern "C" int
@@ -38,6 +40,7 @@ LLVMFuzzerInitialize(int *argc, char ***argv)
(void) argc;
(void) argv;
weechat_init_gettext ();
config_weechat_init ();
return 0;