From 2130a4dc9d35c501d2ce679dbd547b4c4b9cc6b5 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 8 Feb 2025 17:54:40 -0600 Subject: [PATCH] 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. --- level_0/f_account/c/account/common.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); -- 1.8.3.1