From d6525a8435779ca88559f9bdef9f14004f7e40e6 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 1 Jan 2023 23:29:11 +0200 Subject: [PATCH 4/4] Initialize mutexes of the low level fallback functions earlier Make sure fallback fc_vsnprintf() mutes is initialized before it's needed. See osdn #46418 Signed-off-by: Marko Lindqvist --- client/client_main.c | 7 +++++-- server/srv_main.c | 6 +++++- tools/civmanual.c | 5 +++++ tools/ruledit/ruledit.cpp | 5 +++++ 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/client/client_main.c b/client/client_main.c index a12448520a..4d12449f12 100644 --- a/client/client_main.c +++ b/client/client_main.c @@ -339,10 +339,13 @@ int client_main(int argc, char *argv[]) # endif /* FREECIV_NDEBUG */ #endif /* WIN32_NATIVE */ - i_am_client(); /* Tell to libfreeciv that we are client */ - + /* fc_interface_init() includes low level support like + * guaranteeing that fc_vsnprintf() will work after it, + * so this need to be early. */ fc_interface_init_client(); + i_am_client(); /* Tell to libfreeciv that we are client */ + game.client.ruleset_init = FALSE; /* Ensure that all AIs are initialized to unused state diff --git a/server/srv_main.c b/server/srv_main.c index ce0a5020f2..703cd39e11 100644 --- a/server/srv_main.c +++ b/server/srv_main.c @@ -217,6 +217,11 @@ void init_game_seed(void) **************************************************************************/ void srv_init(void) { + /* fc_interface_init() includes low level support like + * guaranteeing that fc_vsnprintf() will work after it, + * so this need to be early. */ + fc_interface_init_server(); + i_am_server(); /* Tell to libfreeciv that we are server */ /* NLS init */ @@ -3348,7 +3353,6 @@ void server_game_free(void) **************************************************************************/ void srv_main(void) { - fc_interface_init_server(); advisors_init(); srv_prepare(); diff --git a/tools/civmanual.c b/tools/civmanual.c index 5bd6e4245e..a033c5c276 100644 --- a/tools/civmanual.c +++ b/tools/civmanual.c @@ -596,6 +596,11 @@ int main(int argc, char **argv) char *option = NULL; int retval = EXIT_SUCCESS; + /* fc_interface_init() includes low level support like + * guaranteeing that fc_vsnprintf() will work after it, + * so this need to be early. */ + fc_interface_init(); + init_nls(); registry_module_init(); init_character_encodings(FC_DEFAULT_DATA_ENCODING, FALSE); diff --git a/tools/ruledit/ruledit.cpp b/tools/ruledit/ruledit.cpp index f8d870e24c..95ec518024 100644 --- a/tools/ruledit/ruledit.cpp +++ b/tools/ruledit/ruledit.cpp @@ -68,6 +68,11 @@ int main(int argc, char **argv) # endif /* FREECIV_NDEBUG */ #endif /* WIN32_NATIVE */ + /* fc_interface_init() includes low level support like + * guaranteeing that fc_vsnprintf() will work after it, + * so this need to be early. */ + fc_interface_init(); + init_nls(); #ifdef ENABLE_NLS -- 2.39.0