summaryrefslogtreecommitdiff
path: root/lib/common/get_path.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common/get_path.c')
-rw-r--r--lib/common/get_path.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/common/get_path.c b/lib/common/get_path.c
deleted file mode 100644
index 72ed1bd..0000000
--- a/lib/common/get_path.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/* SPDX-License-Identifier: GPL-3.0-or-later */
-/*
- * get_path.c
- *
- * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
- */
-#include "common.h"
-
-#include <string.h>
-#include <stdlib.h>
-
-char *sqfs_tree_node_get_path(const sqfs_tree_node_t *node)
-{
- const sqfs_tree_node_t *it;
- char *str, *ptr;
- size_t len = 0;
-
- if (node->parent == NULL) {
- if (node->name[0] != '\0')
- return strdup((const char *)node->name);
-
- return strdup("/");
- }
-
- for (it = node; it != NULL && it->parent != NULL; it = it->parent) {
- len += strlen((const char *)it->name) + 1;
- }
-
- str = malloc(len + 1);
- if (str == NULL)
- return NULL;
-
- ptr = str + len;
- *ptr = '\0';
-
- for (it = node; it != NULL && it->parent != NULL; it = it->parent) {
- len = strlen((const char *)it->name);
- ptr -= len;
-
- memcpy(ptr, (const char *)it->name, len);
- *(--ptr) = '/';
- }
-
- return str;
-}