]> 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:12:18 +0000 (19:12 -0500)
committerKevin Day <Kevin@kevux.org>
Tue, 11 Jun 2024 00:12:18 +0000 (19:12 -0500)
commitaefd226cd136a0c5e64f52546ea24d470b5b22ce
tree4d443ea4e1e6d84582932117aef00d6cf64af78c
parentee4d94dd00342582de7473dff746d60e03c2fda0
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