aboutsummaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-04-21 18:48:55 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-04-21 18:58:29 +0200
commitf8270c05898313a8e75c367172958335dbec4a36 (patch)
tree4e5f64919f7c47f40ebd649b655a26aff447bf1a /lib/util
parent5374f9c6297f0992edaab2d725d27365585e4318 (diff)
libutil: win32: clenaup dir iterator initialization, retain the path
Instead of dropping the path immediately, store it inside the structure. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/util')
-rw-r--r--lib/util/src/w32_dir_iterator.c66
1 files changed, 31 insertions, 35 deletions
diff --git a/lib/util/src/w32_dir_iterator.c b/lib/util/src/w32_dir_iterator.c
index b1eef2c..5400975 100644
--- a/lib/util/src/w32_dir_iterator.c
+++ b/lib/util/src/w32_dir_iterator.c
@@ -23,6 +23,8 @@ typedef struct {
HANDLE dirhnd;
int state;
bool is_first;
+
+ WCHAR path[];
} dir_iterator_win32_t;
static sqfs_s64 w32time_to_unix(const FILETIME *ft)
@@ -107,33 +109,25 @@ static void dir_iterator_destroy(sqfs_object_t *obj)
dir_iterator_t *dir_iterator_create(const char *path)
{
- WCHAR *wpath = NULL, *new = NULL;
- WIN32_FIND_DATAW first_entry;
dir_iterator_win32_t *it;
size_t len, newlen;
- HANDLE dirhnd;
+ WCHAR *wpath = NULL;
+ void *new = NULL;
/* convert path to UTF-16, append "\\*" */
wpath = path_to_windows(path);
- if (wpath == NULL) {
- fprintf(stderr, "%s: allocation failure.\n", path);
- return NULL;
- }
-
- for (len = 0; wpath[len] != '\0'; ++len)
- ;
+ if (wpath == NULL)
+ goto fail_alloc;
+ len = wcslen(wpath);
newlen = len + 1;
if (len > 0 && wpath[len - 1] != '\\')
newlen += 1;
new = realloc(wpath, sizeof(wpath[0]) * (newlen + 1));
- if (new == NULL) {
- fprintf(stderr, "%s: allocation failure.\n", path);
- free(wpath);
- return NULL;
- }
+ if (new == NULL)
+ goto fail_alloc;
wpath = new;
@@ -143,34 +137,36 @@ dir_iterator_t *dir_iterator_create(const char *path)
wpath[len++] = '*';
wpath[len++] = '\0';
- /* get the directory handle AND the first entry */
- dirhnd = FindFirstFileW(wpath, &first_entry);
-
- if (dirhnd == INVALID_HANDLE_VALUE) {
- w32_perror(path);
- free(wpath);
- return NULL;
- }
+ /* create the sourrounding iterator structure */
+ new = realloc(wpath, sizeof(*it) + len * sizeof(wpath[0]));
+ if (new == NULL)
+ goto fail_alloc;
- free(wpath);
+ it = new;
wpath = NULL;
+ memmove(it->path, new, len * sizeof(wpath[0]));
- /* wrap it up */
- it = calloc(1, sizeof(*it));
- if (it == NULL) {
- fprintf(stderr, "%s: allocation failure.\n", path);
- FindClose(dirhnd);
- return NULL;
- }
-
+ /* initialize */
+ memset(it, 0, offsetof(dir_iterator_win32_t, path));
sqfs_object_init(it, dir_iterator_destroy, NULL);
((dir_iterator_t *)it)->next = dir_iterator_next;
((dir_iterator_t *)it)->read_link = dir_iterator_read_link;
-
it->is_first = true;
it->state = 0;
- it->dirhnd = dirhnd;
- it->ent = first_entry;
+
+ /* get the directory handle AND the first entry */
+ it->dirhnd = FindFirstFileW(it->path, &it->ent);
+
+ if (it->dirhnd == INVALID_HANDLE_VALUE) {
+ w32_perror(path);
+ free(it);
+ return NULL;
+ }
+
return (dir_iterator_t *)it;
+fail_alloc:
+ fprintf(stderr, "%s: allocation failure.\n", path);
+ free(wpath);
+ return NULL;
}