mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Resolve symlinks recursively in get_file_or_linked()
Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
This commit is contained in:
parent
84cd28c5be
commit
3ebc1bee2e
13
src/common.c
13
src/common.c
@ -328,21 +328,20 @@ _data_callback(void* ptr, size_t size, size_t nmemb, void* data)
|
||||
gchar*
|
||||
get_file_or_linked(gchar* loc, gchar* basedir)
|
||||
{
|
||||
gchar* true_loc = NULL;
|
||||
gchar* true_loc = g_strdup(loc);
|
||||
|
||||
// check for symlink
|
||||
if (g_file_test(loc, G_FILE_TEST_IS_SYMLINK)) {
|
||||
true_loc = g_file_read_link(loc, NULL);
|
||||
while (g_file_test(true_loc, G_FILE_TEST_IS_SYMLINK)) {
|
||||
gchar* tmp = g_file_read_link(true_loc, NULL);
|
||||
g_free(true_loc);
|
||||
true_loc = tmp;
|
||||
|
||||
// if relative, add basedir
|
||||
if (!g_str_has_prefix(true_loc, "/") && !g_str_has_prefix(true_loc, "~")) {
|
||||
gchar* tmp = g_strdup_printf("%s/%s", basedir, true_loc);
|
||||
tmp = g_strdup_printf("%s/%s", basedir, true_loc);
|
||||
g_free(true_loc);
|
||||
true_loc = tmp;
|
||||
}
|
||||
// use given location
|
||||
} else {
|
||||
true_loc = g_strdup(loc);
|
||||
}
|
||||
|
||||
return true_loc;
|
||||
|
Loading…
Reference in New Issue
Block a user