From 7c7d882d21be48052eecea1ee2322d7f0b889256 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Fri, 8 Apr 2022 22:19:22 +0300 Subject: [PATCH 42/42] Asserts: Never compare boolean value to exact value of TRUE or FALSE This handles such cases inside asserts only. See osdn #44130 Signed-off-by: Marko Lindqvist --- client/goto.c | 2 +- client/options.c | 4 ++-- common/aicore/path_finding.c | 21 ++++++++++++--------- common/fc_interface.c | 2 +- common/server_settings.c | 2 +- server/connecthand.c | 4 ++-- server/plrhand.c | 3 ++- server/savegame/savegame2.c | 2 +- server/savegame/savegame3.c | 2 +- server/settings.c | 8 ++++---- server/srv_main.c | 2 +- server/unittools.c | 4 ++-- tools/ruleutil/rulesave.c | 4 ++-- utility/inputfile.c | 8 ++++---- utility/support.c | 2 +- 15 files changed, 37 insertions(+), 33 deletions(-) diff --git a/client/goto.c b/client/goto.c index f832e2e097..8db0382906 100644 --- a/client/goto.c +++ b/client/goto.c @@ -894,7 +894,7 @@ static void goto_fill_parameter_base(struct pf_parameter *parameter, fc_assert(parameter->get_TB == NULL); fc_assert(parameter->get_MC != NULL); fc_assert(parameter->start_tile == unit_tile(punit)); - fc_assert(parameter->omniscience == FALSE); + fc_assert(!parameter->omniscience); parameter->get_EC = get_EC; if (utype_acts_hostile(unit_type_get(punit))) { diff --git a/client/options.c b/client/options.c index 8639001768..3ea518e1c4 100644 --- a/client/options.c +++ b/client/options.c @@ -6240,11 +6240,11 @@ static void mapimg_changed_callback(struct option *poption) /* Reset the value to the default value. */ success = option_reset(poption); - fc_assert_msg(success == TRUE, + fc_assert_msg(success, "Failed to reset the option \"%s\".", option_name(poption)); success = mapimg_client_define(); - fc_assert_msg(success == TRUE, + fc_assert_msg(success, "Failed to restore mapimg definition for option \"%s\".", option_name(poption)); } diff --git a/common/aicore/path_finding.c b/common/aicore/path_finding.c index df9fede51a..f908ccf9cb 100644 --- a/common/aicore/path_finding.c +++ b/common/aicore/path_finding.c @@ -896,8 +896,8 @@ static struct pf_map *pf_normal_map_new(const struct pf_parameter *parameter) if (NULL == params->get_costs) { if (!pf_normal_node_init(pfnm, node, params->start_tile, PF_MS_NONE)) { /* Always fails. */ - fc_assert(TRUE == pf_normal_node_init(pfnm, node, params->start_tile, - PF_MS_NONE)); + fc_assert(pf_normal_node_init(pfnm, node, params->start_tile, + PF_MS_NONE)); } if (NULL != params->transported_by_initially) { @@ -1901,8 +1901,8 @@ static struct pf_map *pf_danger_map_new(const struct pf_parameter *parameter) node = pfdm->lattice + tile_index(params->start_tile); if (!pf_danger_node_init(pfdm, node, params->start_tile, PF_MS_NONE)) { /* Always fails. */ - fc_assert(TRUE == pf_danger_node_init(pfdm, node, params->start_tile, - PF_MS_NONE)); + fc_assert(pf_danger_node_init(pfdm, node, params->start_tile, + PF_MS_NONE)); } /* NB: do not handle params->transported_by_initially because we want to @@ -2916,9 +2916,12 @@ static bool pf_fuel_map_iterate(struct pf_map *pfm) #endif } else { #ifdef PF_DEBUG - bool success = map_index_pq_remove(pffm->queue, &tindex); +#ifndef FREECIV_NDEBUG + bool success = +#endif + map_index_pq_remove(pffm->queue, &tindex); - fc_assert(TRUE == success); + fc_assert(success); #else map_index_pq_remove(pffm->queue, &tindex); #endif @@ -3128,8 +3131,8 @@ static struct pf_map *pf_fuel_map_new(const struct pf_parameter *parameter) node = pffm->lattice + tile_index(params->start_tile); if (!pf_fuel_node_init(pffm, node, params->start_tile, PF_MS_NONE)) { /* Always fails. */ - fc_assert(TRUE == pf_fuel_node_init(pffm, node, params->start_tile, - PF_MS_NONE)); + fc_assert(pf_fuel_node_init(pffm, node, params->start_tile, + PF_MS_NONE)); } /* NB: do not handle params->transported_by_initially because we want to @@ -3629,7 +3632,7 @@ static bool pf_pos_hash_cmp(const struct pf_parameter *parameter1, if (!parameter1->omniscience) { #ifdef PF_DEBUG - fc_assert(parameter2->omniscience == FALSE); + fc_assert(!parameter2->omniscience); #endif if (parameter1->utype->unknown_move_cost != parameter2->utype->unknown_move_cost) { diff --git a/common/fc_interface.c b/common/fc_interface.c index a63a55ffed..8ddab2c58e 100644 --- a/common/fc_interface.c +++ b/common/fc_interface.c @@ -42,7 +42,7 @@ bool fc_funcs_defined = FALSE; ****************************************************************************/ struct functions *fc_interface_funcs(void) { - fc_assert_exit(fc_funcs_defined == FALSE); + fc_assert_exit(!fc_funcs_defined); return &fc_functions; } diff --git a/common/server_settings.c b/common/server_settings.c index 7240fce096..da23cc47f2 100644 --- a/common/server_settings.c +++ b/common/server_settings.c @@ -108,7 +108,7 @@ ssetv ssetv_from_values(server_setting_id setting, int value) /* Only Boolean and TRUE can be supported unless setting value encoding * is implemented. */ if (value != TRUE) { - fc_assert(value == TRUE); + fc_assert(value); return SSETV_NONE; } diff --git a/server/connecthand.c b/server/connecthand.c index 1c0acd93c1..8da6876311 100644 --- a/server/connecthand.c +++ b/server/connecthand.c @@ -498,7 +498,7 @@ void lost_connection_to_client(struct connection *pconn) { const char *desc = conn_description(pconn); - fc_assert_ret(TRUE == pconn->server.is_closing); + fc_assert_ret(pconn->server.is_closing); log_normal(_("Lost connection: %s."), desc); @@ -851,7 +851,7 @@ void connection_detach(struct connection *pconn, bool remove_unused_player) bool connection_delegate_take(struct connection *pconn, struct player *dplayer) { - fc_assert_ret_val(pconn->server.delegation.status == FALSE, FALSE); + fc_assert_ret_val(!pconn->server.delegation.status, FALSE); /* Save the original player of this connection and the original username of * the player. */ diff --git a/server/plrhand.c b/server/plrhand.c index eecc57ebd0..1e1ee25012 100644 --- a/server/plrhand.c +++ b/server/plrhand.c @@ -2174,7 +2174,8 @@ void server_player_set_name(struct player *pplayer, const char *name) bool ret; ret = server_player_set_name_full(NULL, pplayer, NULL, name, NULL, 0); - fc_assert(TRUE == ret); + + fc_assert(ret); } /**********************************************************************//** diff --git a/server/savegame/savegame2.c b/server/savegame/savegame2.c index a888483667..9c6d31d012 100644 --- a/server/savegame/savegame2.c +++ b/server/savegame/savegame2.c @@ -4427,7 +4427,7 @@ static void sg_load_player_units_transport(struct loaddata *loading, if (ptrans) { bool load_success = unit_transport_load(punit, ptrans, TRUE); - fc_assert_action(load_success == TRUE, continue); + fc_assert_action(load_success, continue); } } } diff --git a/server/savegame/savegame3.c b/server/savegame/savegame3.c index 056da26157..ae92f682f1 100644 --- a/server/savegame/savegame3.c +++ b/server/savegame/savegame3.c @@ -6242,7 +6242,7 @@ static void sg_load_player_units_transport(struct loaddata *loading, if (ptrans) { bool load_success = unit_transport_load(punit, ptrans, TRUE); - fc_assert_action(load_success == TRUE, continue); + fc_assert_action(load_success, continue); } } } diff --git a/server/settings.c b/server/settings.c index b219ddf8e6..fa8a2ec176 100644 --- a/server/settings.c +++ b/server/settings.c @@ -5270,7 +5270,7 @@ static void settings_list_init(void) struct setting *pset; int i; - fc_assert_ret(setting_sorted.init == FALSE); + fc_assert_ret(!setting_sorted.init); /* Do it for all values of enum sset_level. */ for (i = 0; i < OLEVELS_NUM; i++) { @@ -5328,7 +5328,7 @@ void settings_list_update(void) struct setting *pset; int i; - fc_assert_ret(setting_sorted.init == TRUE); + fc_assert_ret(setting_sorted.init); /* Clear the lists for changed and locked values. */ setting_list_clear(setting_sorted.level[SSET_CHANGED]); @@ -5367,7 +5367,7 @@ int settings_list_cmp(const struct setting *const *ppset1, ****************************************************************************/ struct setting_list *settings_list_get(enum sset_level level) { - fc_assert_ret_val(setting_sorted.init == TRUE, NULL); + fc_assert_ret_val(setting_sorted.init, NULL); fc_assert_ret_val(setting_sorted.level[level] != NULL, NULL); fc_assert_ret_val(sset_level_is_valid(level), NULL); @@ -5381,7 +5381,7 @@ static void settings_list_free(void) { int i; - fc_assert_ret(setting_sorted.init == TRUE); + fc_assert_ret(setting_sorted.init); /* Free the lists. */ for (i = 0; i < OLEVELS_NUM; i++) { diff --git a/server/srv_main.c b/server/srv_main.c index 3c79188239..10bfa9b4c5 100644 --- a/server/srv_main.c +++ b/server/srv_main.c @@ -3221,7 +3221,7 @@ static void srv_ready(void) fc_assert_action(pset != NULL, continue); success = setting_enum_set(pset, mapgen_settings[set].value, NULL, error, sizeof(error)); - fc_assert_msg(success == TRUE, + fc_assert_msg(success, "Failed to restore '%s': %s", mapgen_settings[set].name, error); diff --git a/server/unittools.c b/server/unittools.c index a981480e9a..f8e27913d5 100644 --- a/server/unittools.c +++ b/server/unittools.c @@ -3561,7 +3561,7 @@ static struct unit_move_data *unit_move_data(struct unit *punit, /* Remove unit from the source tile. */ fc_assert(unit_tile(punit) == psrctile); success = unit_list_remove(psrctile->units, punit); - fc_assert(success == TRUE); + fc_assert(success); /* Set new tile. */ unit_tile_set(punit, pdesttile); @@ -4511,7 +4511,7 @@ bool execute_orders(struct unit *punit, const bool fresh) } if (last_order) { - fc_assert(punit->has_orders == FALSE); + fc_assert(!punit->has_orders); log_debug(" stopping because orders are complete"); return TRUE; } diff --git a/tools/ruleutil/rulesave.c b/tools/ruleutil/rulesave.c index 49e8ddaaec..f16399d91f 100644 --- a/tools/ruleutil/rulesave.c +++ b/tools/ruleutil/rulesave.c @@ -3045,7 +3045,7 @@ static bool save_units_ruleset(const char *filename, const char *name) if (preq->source.kind == VUT_GOVERNMENT) { fc_assert_msg(preq->range == REQ_RANGE_PLAYER, "can't convert non player range to the rs format"); - fc_assert_msg(preq->present == TRUE, + fc_assert_msg(preq->present, "can't convert not present reqs to the rs format"); secfile_insert_str(sfile, universal_rule_name(&preq->source), @@ -3062,7 +3062,7 @@ static bool save_units_ruleset(const char *filename, const char *name) if (preq->source.kind == VUT_IMPROVEMENT) { fc_assert_msg(preq->range == REQ_RANGE_CITY, "can't convert non player range to the rs format"); - fc_assert_msg(preq->present == TRUE, + fc_assert_msg(preq->present, "can't convert not present reqs to the rs format"); secfile_insert_str(sfile, universal_rule_name(&preq->source), diff --git a/utility/inputfile.c b/utility/inputfile.c index 7a918ecab9..776abc7193 100644 --- a/utility/inputfile.c +++ b/utility/inputfile.c @@ -184,10 +184,10 @@ static bool inf_sanity_check(struct inputfile *inf) fc_assert_ret_val(NULL != inf, FALSE); fc_assert_ret_val(INF_MAGIC == inf->magic, FALSE); fc_assert_ret_val(NULL != inf->fp, FALSE); - fc_assert_ret_val(FALSE == inf->at_eof - || TRUE == inf->at_eof, FALSE); - fc_assert_ret_val(FALSE == inf->in_string - || TRUE == inf->in_string, FALSE); + fc_assert_ret_val(!inf->at_eof + || inf->at_eof, FALSE); + fc_assert_ret_val(!inf->in_string + || inf->in_string, FALSE); #ifdef FREECIV_DEBUG fc_assert_ret_val(0 <= inf->string_start_line, FALSE); diff --git a/utility/support.c b/utility/support.c index 3839fef862..f30126980c 100644 --- a/utility/support.c +++ b/utility/support.c @@ -689,7 +689,7 @@ char *fc_strrep_resize(char *str, size_t *len, const char *search, success = fc_strrep(str, (*len), search, replace); /* should never happen */ - fc_assert_ret_val_msg(success == TRUE, NULL, + fc_assert_ret_val_msg(success, NULL, "Can't replace '%s' by '%s' in '%s'. To small " "size after reallocation: %lu.", search, replace, str, (long unsigned int)*len); -- 2.35.1