]> Kevux Git Server - fll/commitdiff
Cleanup: remove redundant memset() calls.
authorKevin Day <thekevinday@gmail.com>
Sun, 3 Jan 2021 04:08:55 +0000 (22:08 -0600)
committerKevin Day <thekevinday@gmail.com>
Sun, 3 Jan 2021 04:08:55 +0000 (22:08 -0600)
The f_memory_*() functions already call memset() where appropriate.

17 files changed:
level_0/f_account/c/account-common.h
level_0/f_directory/c/directory_type.h
level_0/f_fss/c/fss_named.h
level_0/f_fss/c/fss_nest.h
level_0/f_fss/c/fss_set.h
level_0/f_memory/c/memory_structure.h
level_0/f_string/c/string_dynamic.h
level_0/f_string/c/string_map.h
level_0/f_string/c/string_triple.h
level_0/f_thread/c/thread-common.h
level_0/f_utf/c/utf-common.h
level_3/fss_basic_list_read/c/private-fss_basic_list_read.h
level_3/fss_basic_read/c/private-fss_basic_read.h
level_3/fss_embedded_list_read/c/private-fss_embedded_list_read.h
level_3/fss_extended_list_read/c/private-fss_extended_list_read.h
level_3/fss_extended_read/c/private-fss_extended_read.h
level_3/iki_read/c/iki_read.h

index 817623464185421c7cf251f39f64203af65db0c9..ae27b7ce49c6ce4ca0287b50cf84d7ed92cb166f 100644 (file)
@@ -170,11 +170,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & accounts.array, sizeof(f_account_t), accounts.size, new_length); \
     if (status == F_none) { \
-      if (new_length > accounts.size) { \
-        for (f_array_length_t _macro__i = accounts.size; _macro__i < new_length; _macro__i++) { \
-          memset(&accounts.array[_macro__i], 0, sizeof(f_account_t)); \
-        } \
-      } \
       accounts.size = new_length; \
       if (accounts.used > accounts.size) accounts.used = new_length; \
     }
@@ -189,11 +184,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & accounts.array, sizeof(f_account_t), accounts.size, new_length); \
     if (status == F_none) { \
-      if (new_length > accounts.size) { \
-        for (f_array_length_t _macro__i = accounts.size; _macro__i < new_length; _macro__i++) { \
-          memset(&accounts.array[_macro__i], 0, sizeof(f_account_t)); \
-        } \
-      } \
       accounts.size = new_length; \
       if (accounts.used > accounts.size) accounts.used = new_length; \
     }
index c23345c005e819bef4d67b304bc964dd75a752d4..53f77b286099d5e0f6fcf07b5cdf67af2a2c37a0 100644 (file)
@@ -197,11 +197,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & structures.array, sizeof(f_directory_status_t), structures.size, new_length); \
     if (status == F_none) { \
-      if (new_length > structures.size) { \
-        for (f_array_length_t _macro__i = structures.size; _macro__i < new_length; _macro__i++) { \
-          memset(&structures.array[_macro__i], 0, sizeof(f_directory_status_t)); \
-        } \
-      } \
       structures.size = new_length; \
       if (structures.used > structures.size) structures.used = new_length; \
     }
@@ -216,11 +211,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & structures.array, sizeof(f_directory_status_t), structures.size, new_length); \
     if (status == F_none) { \
-      if (new_length > structures.size) { \
-        for (f_array_length_t _macro__i = structures.size; _macro__i < new_length; _macro__i++) { \
-          memset(&structures.array[_macro__i], 0, sizeof(f_directory_status_t)); \
-        } \
-      } \
       structures.size = new_length; \
       if (structures.used > structures.size) structures.used = new_length; \
     }
index 1a63dad3d6526651aa89db03215056e8b53f5d60..2262c51e1b9aff54c1b28ec34e9dae6beb27b05e 100644 (file)
@@ -227,11 +227,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & sets.array, sizeof(f_fss_named_t), sets.size, new_length); \
     if (status == F_none) { \
-      if (new_length > sets.size) { \
-        for (f_array_length_t _macro__i = sets.size; _macro__i < new_length; _macro__i++) { \
-          memset(&sets.array[_macro__i], 0, sizeof(f_fss_named_t)); \
-        } \
-      } \
       sets.size = new_length; \
       if (sets.used > sets.size) sets.used = new_length; \
     }
@@ -253,11 +248,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & sets.array, sizeof(f_fss_named_t), sets.size, new_length); \
     if (status == F_none) { \
-      if (new_length > sets.size) { \
-        for (f_array_length_t _macro__i = sets.size; _macro__i < new_length; _macro__i++) { \
-          memset(&sets.array[_macro__i], 0, sizeof(f_fss_named_t)); \
-        } \
-      } \
       sets.size = new_length; \
       if (sets.used > sets.size) sets.used = new_length; \
     }
index f271f8cb64cc0c01bffbd04daa8c892501457ad4..6df60b89e5ffcf37d3c7491776ae0dd5db94c4e4 100644 (file)
@@ -270,11 +270,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & items.array, sizeof(f_fss_item_t), items.size, new_length); \
     if (status == F_none) { \
-      if (new_length > items.size) { \
-        for (f_array_length_t _macro__i = items.size; _macro__i < new_length; _macro__i++) { \
-          memset(&items.array[_macro__i], 0, sizeof(f_fss_item_t)); \
-        } \
-      } \
       items.size = new_length; \
       if (items.used > items.size) items.used = new_length; \
     }
@@ -296,11 +291,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & items.array, sizeof(f_fss_item_t), items.size, new_length); \
     if (status == F_none) { \
-      if (new_length > items.size) { \
-        for (length_variable _macro__i = items.size; _macro__i < new_length; _macro__i++) { \
-          memset(&items.array[_macro__i], 0, sizeof(f_fss_item_t)); \
-        } \
-      } \
       items.size = new_length; \
       if (items.used > items.size) items.used = new_length; \
     }
@@ -438,11 +428,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & nest.depth, sizeof(f_fss_items_t), nest.size, new_length); \
     if (status == F_none) { \
-      if (new_length > nest.size) { \
-        for (f_array_length_t _macro__i = nest.size; _macro__i < new_length; _macro__i++) { \
-          memset(&nest.depth[_macro__i], 0, sizeof(f_fss_items_t)); \
-        } \
-      } \
       nest.size = new_length; \
       if (nest.used > nest.size) nest.used = new_length; \
     }
@@ -464,11 +449,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & nest.depth, sizeof(f_fss_item_t), nest.size, new_length); \
     if (status == F_none) { \
-      if (new_length > nest.size) { \
-        for (f_array_length_t _macro__i = nest.size; _macro__i < new_length; _macro__i++) { \
-          memset(&items.depth[_macro__i], 0, sizeof(f_fss_item_t)); \
-        } \
-      } \
       nest.size = new_length; \
       if (nest.used > nest.size) nest.used = new_length; \
     }
@@ -601,11 +581,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & nests.array, sizeof(f_fss_nest_t), nests.size, new_length); \
     if (status == F_none) { \
-      if (new_length > nests.size) { \
-        for (f_array_length_t _macro__i = nests.size; _macro__i < new_length; _macro__i++) { \
-          memset(&nests.array[_macro__i], 0, sizeof(f_fss_nest_t)); \
-        } \
-      } \
       nests.size = new_length; \
       if (nests.used > nests.size) nests.used = new_length; \
     }
@@ -627,11 +602,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & nests.array, sizeof(f_fss_nest_t), nests.size, new_length); \
     if (status == F_none) { \
-      if (new_length > nests.size) { \
-        for (f_array_length_t _macro__i = nests.size; _macro__i < new_length; _macro__i++) { \
-          memset(&nests.array[_macro__i], 0, sizeof(f_fss_nest_t)); \
-        } \
-      } \
       nests.size = new_length; \
       if (nests.used > nests.size) nests.used = new_length; \
     }
index 0d2ac750728a9184e85848072df76669458f2d3b..eb294d6ebe31d5a32f77148a4eefd7f5db007625 100644 (file)
@@ -203,11 +203,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & sets.array, sizeof(f_fss_set_t), sets.size, new_length); \
     if (status == F_none) { \
-      if (new_length > sets.size) { \
-        for (f_array_length_t _macro__i = sets.size; _macro__i < new_length; _macro__i++) { \
-          memset(&sets.array[_macro__i], 0, sizeof(f_fss_set_t)); \
-        } \
-      } \
       sets.size = new_length; \
       if (sets.used > sets.size) sets.used = new_length; \
     }
@@ -229,11 +224,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & sets.array, sizeof(f_fss_set_t), sets.size, new_length); \
     if (status == F_none) { \
-      if (new_length > sets.size) { \
-        for (f_array_length_t _macro__i = sets.size; _macro__i < new_length; _macro__i++) { \
-          memset(&sets.array[_macro__i], 0, sizeof(f_fss_set_t)); \
-        } \
-      } \
       sets.size = new_length; \
       if (sets.used > sets.size) sets.used = new_length; \
     }
@@ -467,11 +457,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & sets.array, sizeof(f_fss_set_quote_t), sets.size, new_length); \
     if (status == F_none) { \
-      if (new_length > sets.size) { \
-        for (f_array_length_t _macro__i = sets.size; _macro__i < new_length; _macro__i++) { \
-          memset(&sets.array[_macro__i], 0, sizeof(f_fss_set_quote_t)); \
-        } \
-      } \
       sets.size = new_length; \
       if (sets.used > sets.size) sets.used = new_length; \
     }
@@ -493,11 +478,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & sets.array, sizeof(f_fss_set_quote_t), sets.size, new_length); \
     if (status == F_none) { \
-      if (new_length > sets.size) { \
-        for (f_array_length_t _macro__i = sets.size; _macro__i < new_length; _macro__i++) { \
-          memset(&sets.array[_macro__i], 0, sizeof(f_fss_set_quote_t)); \
-        } \
-      } \
       sets.size = new_length; \
       if (sets.used > sets.size) sets.used = new_length; \
     }
index fd4f5db5d5f670d06e1344276fb224d1875d9497..97f2b8e0fa3aae757bf3977714de7ae0fde44cfb 100644 (file)
@@ -275,11 +275,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & structures.array, sizeof(type_structures), structures.size, new_length); \
     if (status == F_none) { \
-      if (new_length > structures.size) { \
-        for (length_variable _macro__i = structures.size; _macro__i < new_length; _macro__i++) { \
-          memset(&structures.array[_macro__i], 0, sizeof(type_structures)); \
-        } \
-      } \
       structures.size = new_length; \
       if (structures.used > structures.size) structures.used = new_length; \
     }
@@ -306,11 +301,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & structures.array, sizeof(type_structures), structures.size, new_length); \
     if (status == F_none) { \
-      if (new_length > structures.size) { \
-        for (length_variable _macro__i = structures.size; _macro__i < new_length; _macro__i++) { \
-          memset(&structures.array[_macro__i], 0, sizeof(type_structures)); \
-        } \
-      } \
       structures.size = new_length; \
       if (structures.used > structures.size) structures.used = new_length; \
     }
index 9e1b2d428667bb34c061963c5e513c656bcf5fc3..b44204be2ba6ef9a0c88a22cadbea18092a8aa57 100644 (file)
@@ -206,11 +206,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & dynamics.array, sizeof(f_string_dynamic_t), dynamics.size, new_length); \
     if (status == F_none) { \
-      if (new_length > dynamics.size) { \
-        for (f_array_length_t _macro__i = dynamics.size; _macro__i < new_length; _macro__i++) { \
-          memset(&dynamics.array[_macro__i], 0, sizeof(f_string_dynamic_t)); \
-        } \
-      } \
       dynamics.size = new_length; \
       if (dynamics.used > dynamics.size) dynamics.used = new_length; \
     }
@@ -225,11 +220,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & dynamics.array, sizeof(f_string_dynamic_t), dynamics.size, new_length); \
     if (status == F_none) { \
-      if (new_length > dynamics.size) { \
-        for (f_array_length_t _macro__i = dynamics.size; _macro__i < new_length; _macro__i++) { \
-          memset(&dynamics.array[_macro__i], 0, sizeof(f_string_dynamic_t)); \
-        } \
-      } \
       dynamics.size = new_length; \
       if (dynamics.used > dynamics.size) dynamics.used = new_length; \
     }
index b2fa00a5c562dd2ef1e61686915a431402ff6b19..5b8a5bac3635397b4e79d6f03b64adc910b741e3 100644 (file)
@@ -139,11 +139,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & maps.array, sizeof(f_string_map_t), maps.size, new_length); \
     if (status == F_none) { \
-      if (new_length > maps.size) { \
-        for (f_array_length_t _macro__i = maps.size; _macro__i < new_length; _macro__i++) { \
-          memset(&maps.array[_macro__i], 0, sizeof(f_string_map_t)); \
-        } \
-      } \
       maps.size = new_length; \
       if (maps.used > maps.size) maps.used = new_length; \
     }
@@ -158,11 +153,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & maps.array, sizeof(f_string_map_t), maps.size, new_length); \
     if (status == F_none) { \
-      if (new_length > maps.size) { \
-        for (f_array_length_t _macro__i = maps.size; _macro__i < new_length; _macro__i++) { \
-          memset(&maps.array[_macro__i], 0, sizeof(f_string_map_t)); \
-        } \
-      } \
       maps.size = new_length; \
       if (maps.used > maps.size) maps.used = new_length; \
     }
@@ -284,11 +274,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & maps.array, sizeof(f_string_map_multi_t), maps.size, new_length); \
     if (status == F_none) { \
-      if (new_length > maps.size) { \
-        for (f_array_length_t _macro__i = maps.size; _macro__i < new_length; _macro__i++) { \
-          memset(&maps.array[_macro__i], 0, sizeof(f_string_map_multi_t)); \
-        } \
-      } \
       maps.size = new_length; \
       if (maps.used > maps.size) maps.used = new_length; \
     }
@@ -303,11 +288,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & maps.array, sizeof(f_string_map_multi_t), maps.size, new_length); \
     if (status == F_none) { \
-      if (new_length > maps.size) { \
-        for (f_array_length_t _macro__i = maps.size; _macro__i < new_length; _macro__i++) { \
-          memset(&maps.array[_macro__i], 0, sizeof(f_string_map_multi_t)); \
-        } \
-      } \
       maps.size = new_length; \
       if (maps.used > maps.size) maps.used = new_length; \
     }
index e4c12dab67f66a291ebcc79fa62dfabdc42b216e..812d6962379e6f015b5e1c9bcc7d7faa8205c925 100644 (file)
@@ -152,11 +152,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & triples.array, sizeof(f_string_triple_t), triples.size, new_length); \
     if (status == F_none) { \
-      if (new_length > triples.size) { \
-        for (f_array_length_t _macro__i = triples.size; _macro__i < new_length; _macro__i++) { \
-          memset(&triples.array[_macro__i], 0, sizeof(f_string_triple_t)); \
-        } \
-      } \
       triples.size = new_length; \
       if (triples.used > triples.size) triples.used = new_length; \
     }
@@ -171,11 +166,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & triples.array, sizeof(f_string_triple_t), triples.size, new_length); \
     if (status == F_none) { \
-      if (new_length > triples.size) { \
-        for (f_array_length_t _macro__i = triples.size; _macro__i < new_length; _macro__i++) { \
-          memset(&triples.array[_macro__i], 0, sizeof(f_string_triple_t)); \
-        } \
-      } \
       triples.size = new_length; \
       if (triples.used > triples.size) triples.used = new_length; \
     }
index aa0e126f49a1796dc24e1a750a6e6cb706bc4fb8..76aad67f9a8fecf42b9df03501b4e1d056c8b9e7 100644 (file)
@@ -85,11 +85,6 @@ extern "C" {
   #define f_macro_thread_attributes_t_resize(status, attributes, new_length) \
     status = f_memory_resize((void **) & attributes.array, sizeof(f_thread_attribute_t), attributes.size, new_length); \
     if (status == F_none) { \
-      if (new_length > attributes.size) { \
-        for (f_array_length_t _macro__i = attributes.size; _macro__i < new_length; _macro__i++) { \
-          memset(&attributes.array[_macro__i], 0, sizeof(f_thread_attribute_t)); \
-        } \
-      } \
       attributes.size = new_length; \
       if (attributes.used > attributes.size) attributes.used = new_length; \
     }
@@ -97,11 +92,6 @@ extern "C" {
   #define f_macro_thread_attributes_t_adjust(status, attributes, new_length) \
     status = f_memory_adjust((void **) & attributes.array, sizeof(f_thread_attribute_t), attributes.size, new_length); \
     if (status == F_none) { \
-      if (new_length > attributes.size) { \
-        for (f_array_length_t _macro__i = attributes.size; _macro__i < new_length; _macro__i++) { \
-          memset(&attributes.array[_macro__i], 0, sizeof(f_thread_attribute_t)); \
-        } \
-      } \
       attributes.size = new_length; \
       if (attributes.used > attributes.size) attributes.used = new_length; \
     }
@@ -175,11 +165,6 @@ extern "C" {
   #define f_macro_thread_conditions_t_resize(status, conditions, new_length) \
     status = f_memory_resize((void **) & conditions.array, sizeof(f_thread_condition_t), conditions.size, new_length); \
     if (status == F_none) { \
-      if (new_length > conditions.size) { \
-        for (f_array_length_t _macro__i = conditions.size; _macro__i < new_length; _macro__i++) { \
-          memset(&conditions.array[_macro__i], 0, sizeof(f_thread_condition_t)); \
-        } \
-      } \
       conditions.size = new_length; \
       if (conditions.used > conditions.size) conditions.used = new_length; \
     }
@@ -187,11 +172,6 @@ extern "C" {
   #define f_macro_thread_conditions_t_adjust(status, conditions, new_length) \
     status = f_memory_adjust((void **) & conditions.array, sizeof(f_thread_condition_t), conditions.size, new_length); \
     if (status == F_none) { \
-      if (new_length > conditions.size) { \
-        for (f_array_length_t _macro__i = conditions.size; _macro__i < new_length; _macro__i++) { \
-          memset(&conditions.array[_macro__i], 0, sizeof(f_thread_condition_t)); \
-        } \
-      } \
       conditions.size = new_length; \
       if (conditions.used > conditions.size) conditions.used = new_length; \
     }
@@ -265,11 +245,6 @@ extern "C" {
   #define f_macro_thread_ids_t_resize(status, ids, new_length) \
     status = f_memory_resize((void **) & ids.array, sizeof(f_thread_id_t), ids.size, new_length); \
     if (status == F_none) { \
-      if (new_length > ids.size) { \
-        for (f_array_length_t _macro__i = ids.size; _macro__i < new_length; _macro__i++) { \
-          memset(&ids.array[_macro__i], 0, sizeof(f_thread_id_t)); \
-        } \
-      } \
       ids.size = new_length; \
       if (ids.used > ids.size) ids.used = new_length; \
     }
@@ -277,11 +252,6 @@ extern "C" {
   #define f_macro_thread_ids_t_adjust(status, ids, new_length) \
     status = f_memory_adjust((void **) & ids.array, sizeof(f_thread_id_t), ids.size, new_length); \
     if (status == F_none) { \
-      if (new_length > ids.size) { \
-        for (f_array_length_t _macro__i = ids.size; _macro__i < new_length; _macro__i++) { \
-          memset(&ids.array[_macro__i], 0, sizeof(f_thread_id_t)); \
-        } \
-      } \
       ids.size = new_length; \
       if (ids.used > ids.size) ids.used = new_length; \
     }
@@ -355,11 +325,6 @@ extern "C" {
   #define f_macro_thread_keys_t_resize(status, keys, new_length) \
     status = f_memory_resize((void **) & keys.array, sizeof(f_thread_key_t), keys.size, new_length); \
     if (status == F_none) { \
-      if (new_length > keys.size) { \
-        for (f_array_length_t _macro__i = keys.size; _macro__i < new_length; _macro__i++) { \
-          memset(&keys.array[_macro__i], 0, sizeof(f_thread_key_t)); \
-        } \
-      } \
       keys.size = new_length; \
       if (keys.used > keys.size) keys.used = new_length; \
     }
@@ -367,11 +332,6 @@ extern "C" {
   #define f_macro_thread_keys_t_adjust(status, keys, new_length) \
     status = f_memory_adjust((void **) & keys.array, sizeof(f_thread_key_t), keys.size, new_length); \
     if (status == F_none) { \
-      if (new_length > keys.size) { \
-        for (f_array_length_t _macro__i = keys.size; _macro__i < new_length; _macro__i++) { \
-          memset(&keys.array[_macro__i], 0, sizeof(f_thread_key_t)); \
-        } \
-      } \
       keys.size = new_length; \
       if (keys.used > keys.size) keys.used = new_length; \
     }
@@ -445,11 +405,6 @@ extern "C" {
   #define f_macro_thread_locks_t_resize(status, locks, new_length) \
     status = f_memory_resize((void **) & locks.array, sizeof(f_thread_lock_t), locks.size, new_length); \
     if (status == F_none) { \
-      if (new_length > locks.size) { \
-        for (f_array_length_t _macro__i = locks.size; _macro__i < new_length; _macro__i++) { \
-          memset(&locks.array[_macro__i], 0, sizeof(f_thread_lock_t)); \
-        } \
-      } \
       locks.size = new_length; \
       if (locks.used > locks.size) locks.used = new_length; \
     }
@@ -457,11 +412,6 @@ extern "C" {
   #define f_macro_thread_locks_t_adjust(status, locks, new_length) \
     status = f_memory_adjust((void **) & locks.array, sizeof(f_thread_lock_t), locks.size, new_length); \
     if (status == F_none) { \
-      if (new_length > locks.size) { \
-        for (f_array_length_t _macro__i = locks.size; _macro__i < new_length; _macro__i++) { \
-          memset(&locks.array[_macro__i], 0, sizeof(f_thread_lock_t)); \
-        } \
-      } \
       locks.size = new_length; \
       if (locks.used > locks.size) locks.used = new_length; \
     }
@@ -535,11 +485,6 @@ extern "C" {
   #define f_macro_thread_mutexs_t_resize(status, mutexs, new_length) \
     status = f_memory_resize((void **) & mutexs.array, sizeof(f_thread_mutex_t), mutexs.size, new_length); \
     if (status == F_none) { \
-      if (new_length > mutexs.size) { \
-        for (f_array_length_t _macro__i = mutexs.size; _macro__i < new_length; _macro__i++) { \
-          memset(&mutexs.array[_macro__i], 0, sizeof(f_thread_mutex_t)); \
-        } \
-      } \
       mutexs.size = new_length; \
       if (mutexs.used > mutexs.size) mutexs.used = new_length; \
     }
@@ -547,11 +492,6 @@ extern "C" {
   #define f_macro_thread_mutexs_t_adjust(status, mutexs, new_length) \
     status = f_memory_adjust((void **) & mutexs.array, sizeof(f_thread_mutex_t), mutexs.size, new_length); \
     if (status == F_none) { \
-      if (new_length > mutexs.size) { \
-        for (f_array_length_t _macro__i = mutexs.size; _macro__i < new_length; _macro__i++) { \
-          memset(&mutexs.array[_macro__i], 0, sizeof(f_thread_mutex_t)); \
-        } \
-      } \
       mutexs.size = new_length; \
       if (mutexs.used > mutexs.size) mutexs.used = new_length; \
     }
@@ -625,11 +565,6 @@ extern "C" {
   #define f_macro_thread_mutex_attributes_t_resize(status, mutex_attributes, new_length) \
     status = f_memory_resize((void **) & mutex_attributes.array, sizeof(f_thread_mutex_attribute_t), mutex_attributes.size, new_length); \
     if (status == F_none) { \
-      if (new_length > mutex_attributes.size) { \
-        for (f_array_length_t _macro__i = mutex_attributes.size; _macro__i < new_length; _macro__i++) { \
-          memset(&mutex_attributes.array[_macro__i], 0, sizeof(f_thread_mutex_attribute_t)); \
-        } \
-      } \
       mutex_attributes.size = new_length; \
       if (mutex_attributes.used > mutex_attributes.size) mutex_attributes.used = new_length; \
     }
@@ -637,11 +572,6 @@ extern "C" {
   #define f_macro_thread_mutex_attributes_t_adjust(status, mutex_attributes, new_length) \
     status = f_memory_adjust((void **) & mutex_attributes.array, sizeof(f_thread_mutex_attribute_t), mutex_attributes.size, new_length); \
     if (status == F_none) { \
-      if (new_length > mutex_attributes.size) { \
-        for (f_array_length_t _macro__i = mutex_attributes.size; _macro__i < new_length; _macro__i++) { \
-          memset(&mutex_attributes.array[_macro__i], 0, sizeof(f_thread_mutex_attribute_t)); \
-        } \
-      } \
       mutex_attributes.size = new_length; \
       if (mutex_attributes.used > mutex_attributes.size) mutex_attributes.used = new_length; \
     }
@@ -715,11 +645,6 @@ extern "C" {
   #define f_macro_thread_onces_t_resize(status, onces, new_length) \
     status = f_memory_resize((void **) & onces.array, sizeof(f_thread_once_t), onces.size, new_length); \
     if (status == F_none) { \
-      if (new_length > onces.size) { \
-        for (f_array_length_t _macro__i = onces.size; _macro__i < new_length; _macro__i++) { \
-          memset(&onces.array[_macro__i], 0, sizeof(f_thread_once_t)); \
-        } \
-      } \
       onces.size = new_length; \
       if (onces.used > onces.size) onces.used = new_length; \
     }
@@ -727,11 +652,6 @@ extern "C" {
   #define f_macro_thread_onces_t_adjust(status, onces, new_length) \
     status = f_memory_adjust((void **) & onces.array, sizeof(f_thread_once_t), onces.size, new_length); \
     if (status == F_none) { \
-      if (new_length > onces.size) { \
-        for (f_array_length_t _macro__i = onces.size; _macro__i < new_length; _macro__i++) { \
-          memset(&onces.array[_macro__i], 0, sizeof(f_thread_once_t)); \
-        } \
-      } \
       onces.size = new_length; \
       if (onces.used > onces.size) onces.used = new_length; \
     }
@@ -816,11 +736,6 @@ extern "C" {
   #define f_macro_thread_sets_t_resize(status, threads, new_length) \
     status = f_memory_resize((void **) & threads.array, sizeof(f_thread_set_t), threads.size, new_length); \
     if (status == F_none) { \
-      if (new_length > threads.size) { \
-        for (f_array_length_t _macro__i = threads.size; _macro__i < new_length; _macro__i++) { \
-          memset(&threads.array[_macro__i], 0, sizeof(f_thread_set_t)); \
-        } \
-      } \
       threads.size = new_length; \
       if (threads.used > threads.size) threads.used = new_length; \
     }
@@ -828,11 +743,6 @@ extern "C" {
   #define f_macro_thread_sets_t_adjust(status, threads, new_length) \
     status = f_memory_adjust((void **) & threads.array, sizeof(f_thread_set_t), threads.size, new_length); \
     if (status == F_none) { \
-      if (new_length > threads.size) { \
-        for (f_array_length_t _macro__i = threads.size; _macro__i < new_length; _macro__i++) { \
-          memset(&threads.array[_macro__i], 0, sizeof(f_thread_set_t)); \
-        } \
-      } \
       threads.size = new_length; \
       if (threads.used > threads.size) threads.used = new_length; \
     }
index 2e58e5501e1e896b44545dd7011265700933cac3..d9ba3ad356b80a353552a36224cbd43121ca08b0 100644 (file)
@@ -454,11 +454,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & dynamics.array, sizeof(f_utf_string_dynamic_t), dynamics.size, new_length); \
     if (status == F_none) { \
-      if (new_length > dynamics.size) { \
-        for (f_utf_string_length_t _macro__i = dynamics.size; _macro__i < new_length; _macro__i++) { \
-          memset(&dynamics.array[_macro__i], 0, sizeof(f_utf_string_dynamic_t)); \
-        } \
-      } \
       dynamics.size = new_length; \
       if (dynamics.used > dynamics.size) dynamics.used = new_length; \
     }
@@ -473,11 +468,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & dynamics.array, sizeof(f_utf_string_dynamic_t), dynamics.size, new_length); \
     if (status == F_none) { \
-      if (new_length > dynamics.size) { \
-        for (f_utf_string_length_t _macro__i = dynamics.size; _macro__i < new_length; _macro__i++) { \
-          memset(&dynamics.array[_macro__i], 0, sizeof(f_utf_string_dynamic_t)); \
-        } \
-      } \
       dynamics.size = new_length; \
       if (dynamics.used > dynamics.size) dynamics.used = new_length; \
     }
index 04b26c614bc2ce092dbd58f966d19cc5e49359df..e9b6972d40c3fb9a41148153b615c99388e27725 100644 (file)
@@ -104,12 +104,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & depths.array, sizeof(fss_basic_list_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_basic_list_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
@@ -125,12 +119,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & depths.array, sizeof(fss_basic_list_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_basic_list_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
index 537254f042f84a115f040f9778fdb4dd8850b25f..1b4ba5eb7fc15efeff1828dede92986792e8bec2 100644 (file)
@@ -104,12 +104,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & depths.array, sizeof(fss_basic_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_basic_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
@@ -125,12 +119,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & depths.array, sizeof(fss_basic_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_basic_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
index 349c3832252cabef9e1f78b4d4e66f0fddb8c65f..622c900d9c5ca65d9b54c6d32ac1b8f8a16ae1f0 100644 (file)
@@ -129,12 +129,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & depths.array, sizeof(fss_embedded_list_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_embedded_list_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
@@ -150,12 +144,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & depths.array, sizeof(fss_embedded_list_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_embedded_list_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
index 298a92eac96f13a844669b100a7da29f1edcb453..e1740eed666454f094608cd364b1b6074c770a6b 100644 (file)
@@ -104,12 +104,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & depths.array, sizeof(fss_extended_list_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_extended_list_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
@@ -125,12 +119,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & depths.array, sizeof(fss_extended_list_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_extended_list_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
index 6c4249f3908e7c017506a050f199939e27a6f29a..06183c5f9fd5e0afab51a65a0d40c89d97f98d8e 100644 (file)
@@ -104,12 +104,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & depths.array, sizeof(fss_extended_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_extended_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
@@ -125,12 +119,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & depths.array, sizeof(fss_extended_read_depth_t), depths.size, new_length); \
     if (status == F_none) { \
-      if (new_length > depths.size) { \
-        f_array_length_t i = depths.size; \
-        for (; i < new_length; i++) { \
-          memset(&depths.array[i], 0, sizeof(fss_extended_read_depth_t)); \
-        } \
-      } \
       depths.size = new_length; \
       if (depths.used > depths.size) depths.used = new_length; \
     }
index dfa412e227075cd4e7fd309deb01aeac7e3ee8d2..f9f24bc33df07af8c92a3736ffb0ab6a04233e91 100644 (file)
@@ -199,12 +199,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_resize((void **) & replacements.array, sizeof(iki_read_substitution_t), replacements.size, new_length); \
     if (status == F_none) { \
-      if (new_length > replacements.size) { \
-        f_array_length_t i = replacements.size; \
-        for (; i < new_length; i++) { \
-          memset(&replacements.array[i], 0, sizeof(iki_read_substitution_t)); \
-        } \
-      } \
       replacements.size = new_length; \
       if (replacements.used > replacements.size) replacements.used = new_length; \
     }
@@ -219,12 +213,6 @@ extern "C" {
     } \
     if (status == F_none) status = f_memory_adjust((void **) & replacements.array, sizeof(iki_read_substitution_t), replacements.size, new_length); \
     if (status == F_none) { \
-      if (new_length > replacements.size) { \
-        f_array_length_t i = replacements.size; \
-        for (; i < new_length; i++) { \
-          memset(&replacements.array[i], 0, sizeof(iki_read_substitution_t)); \
-        } \
-      } \
       replacements.size = new_length; \
       if (replacements.used > replacements.size) replacements.used = new_length; \
     }