]> Kevux Git Server - fll/commit
Bugfix: The fl_directory_create() needs to also handle F_file_found_not.
authorKevin Day <Kevin@kevux.org>
Tue, 11 Jun 2024 00:05:21 +0000 (19:05 -0500)
committerKevin Day <Kevin@kevux.org>
Tue, 11 Jun 2024 00:12:31 +0000 (19:12 -0500)
commitf66a812055c38d5614afd4b93a0e7eb04afc3a8e
treeb72e934e7861c34f06eb5950cdba0de6b10845a9
parenta14e9eb57869d775e3b1a87210afe9475964bb5d
Bugfix: The fl_directory_create() needs to also handle F_file_found_not.

Creating an entire directory tree is not working as expected when creating non-existent directories that are two levels or greater deep.
For example take "a/b/c", if "a" exists but neither "a/b" nor "a/b/c" then the create fails.
For example take "a/b", if "a exists but not "a/b" then the create succeeds (or appears to because I never noticed the bug before).

The ENOENT (aka: F_file_found_not) is sometimes returned rather than ENOTDIR (aka: F_false) from f_directory_exists().
Process the ENOENT F_file_found_not.

I noticed some problems in the logic of the fl_directory_create() function as well.
The memcpy() needs to start from the same offset as the source copy offset.
Otherwise, the copy is overwriting the string.
Make sure to place the NULL at the "at_path" rather at "at_path - at_tree".

The initial assignment of "tree.used" is not necessary.
level_1/fl_directory/c/directory.c