diff options
author | Zander Brown <zbrown@gnome.org> | 2022-02-02 11:03:25 +0000 |
---|---|---|
committer | Zander Brown <zbrown@gnome.org> | 2022-02-02 11:03:25 +0000 |
commit | aede29cb337516515f77cc651f8d249d87411528 (patch) | |
tree | e2fab30d909e7494876598e03b47e976db429acd /gio/gfile.c | |
parent | e15de9a83edc8fb90037e0260545d74306733a0b (diff) | |
download | glib-aede29cb337516515f77cc651f8d249d87411528.tar.gz |
gfile: resolve_relative_path isn't nullable
Diffstat (limited to 'gio/gfile.c')
-rw-r--r-- | gio/gfile.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gio/gfile.c b/gio/gfile.c index 6208c2f81..a6ec4dc63 100644 --- a/gio/gfile.c +++ b/gio/gfile.c @@ -989,9 +989,7 @@ g_file_get_relative_path (GFile *parent, * If the @relative_path is an absolute path name, the resolution * is done absolutely (without taking @file path as base). * - * Returns: (transfer full) (nullable): #GFile to the resolved path. - * %NULL if @relative_path is %NULL or if @file is invalid. - * Free the returned object with g_object_unref(). + * Returns: (transfer full): a #GFile for the resolved path. */ GFile * g_file_resolve_relative_path (GFile *file, |