From: Kevin Day Date: Sat, 8 Feb 2025 23:54:40 +0000 (-0600) Subject: Bugfix: Incorrect clear macro on f_account_t(). X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=2130a4dc9d35c501d2ce679dbd547b4c4b9cc6b5;p=fll Bugfix: Incorrect clear macro on f_account_t(). The `macro_f_account_t_clear()` is calling its own macro for the dynamic string values. This is entirely incorrect. Use the proper `macro_f_string_dynamic_t_clear()` macro calls. --- diff --git a/level_0/f_account/c/account/common.h b/level_0/f_account/c/account/common.h index a62ea32..a78b703 100644 --- a/level_0/f_account/c/account/common.h +++ b/level_0/f_account/c/account/common.h @@ -65,11 +65,11 @@ extern "C" { #define macro_f_account_t_clear(account) \ macro_f_uid_t_clear(account.id_user); \ macro_f_gid_t_clear(account.id_group); \ - macro_f_account_t_clear(account.home); \ - macro_f_account_t_clear(account.label); \ - macro_f_account_t_clear(account.name); \ - macro_f_account_t_clear(account.password); \ - macro_f_account_t_clear(account.shell); + macro_f_string_dynamic_t_clear(account.home); \ + macro_f_string_dynamic_t_clear(account.label); \ + macro_f_string_dynamic_t_clear(account.name); \ + macro_f_string_dynamic_t_clear(account.password); \ + macro_f_string_dynamic_t_clear(account.shell); #define macro_f_account_t_delete_simple(accounts) f_account_delete(&accounts); #define macro_f_account_t_destroy_simple(accounts) f_account_destroy(&accounts);