]> Kevux Git Server - fll/commitdiff
Bugfix: Incorrect clear macro on f_account_t().
authorKevin Day <Kevin@kevux.org>
Sat, 8 Feb 2025 23:54:40 +0000 (17:54 -0600)
committerKevin Day <Kevin@kevux.org>
Sat, 8 Feb 2025 23:54:40 +0000 (17:54 -0600)
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

index a62ea32a33846ba2cf931476378661fdf1fdea78..a78b7033db2352d36bf2f6d17f3b8e7b51a78700 100644 (file)
@@ -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);