From: Kevin Day Date: Fri, 14 Apr 2023 00:49:33 +0000 (-0500) Subject: Update: Use f_string_append_nulless() instead of f_string_append() just in case. X-Git-Tag: 0.6.5~14 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=da495d10bff6639b6c5e68ff6d559d47be330241;p=fll Update: Use f_string_append_nulless() instead of f_string_append() just in case. --- diff --git a/level_3/fake/c/private-build.c b/level_3/fake/c/private-build.c index 945edfc..ff4a0f3 100644 --- a/level_3/fake/c/private-build.c +++ b/level_3/fake/c/private-build.c @@ -501,10 +501,10 @@ const f_string_static_t fake_build_documentation_files_s = macro_f_string_static break; } - *status = f_string_append(path_source.string + perserve_offset, path_source.used - perserve_offset, &destination_file); + *status = f_string_append_nulless(path_source.string + perserve_offset, path_source.used - perserve_offset, &destination_file); if (F_status_is_error(*status)) { - fll_error_print(data->main->error, F_status_set_fine(*status), "f_string_append", F_true); + fll_error_print(data->main->error, F_status_set_fine(*status), "f_string_append_nulless", F_true); break; }