From da495d10bff6639b6c5e68ff6d559d47be330241 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 13 Apr 2023 19:49:33 -0500 Subject: [PATCH] Update: Use f_string_append_nulless() instead of f_string_append() just in case. --- level_3/fake/c/private-build.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 1.8.3.1