Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/common/utility.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
This file is part of darktable,
Copyright (C) 2010-2024 darktable developers.
Copyright (C) 2010-2025 darktable developers.

darktable is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -91,11 +91,10 @@ gchar *dt_util_localize_segmented_name(const char *s,
const char *l_name = dt_util_localize_string(name);
items = g_list_append(items, (void *)l_name);
}
g_free(localized);
localized = dt_util_glist_to_str(sep, items);
}

g_free(localized);
localized = dt_util_glist_to_str(sep, items);

g_list_free(items);
g_strfreev(split);
}
Expand Down
Loading