]> git.pld-linux.org Git - packages/bluez.git/blame - 0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch
up to 5.60
[packages/bluez.git] / 0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch
CommitLineData
477801c9
JR
1From 90b72b787a6ae6b9b0bf8ece238e108e8607a433 Mon Sep 17 00:00:00 2001
2From: Bastien Nocera <hadess@hadess.net>
3Date: Sat, 9 Nov 2013 18:13:43 +0100
4Subject: [PATCH 1/2] obex: Use GLib helper function to manipulate paths
5
6Instead of trying to do it by hand. This also makes sure that
7relative paths aren't used by the agent.
8---
9 obexd/src/manager.c | 10 +++++-----
10 1 file changed, 5 insertions(+), 5 deletions(-)
11
12diff --git a/obexd/src/manager.c b/obexd/src/manager.c
13index f84384ae4..285c07c37 100644
14--- a/obexd/src/manager.c
15+++ b/obexd/src/manager.c
16@@ -650,14 +650,14 @@ static void agent_reply(DBusPendingCall *call, void *user_data)
17 DBUS_TYPE_STRING, &name,
18 DBUS_TYPE_INVALID)) {
19 /* Splits folder and name */
20- const char *slash = strrchr(name, '/');
21+ gboolean is_relative = !g_path_is_absolute(name);
22 DBG("Agent replied with %s", name);
23- if (!slash) {
24- agent->new_name = g_strdup(name);
25+ if (is_relative) {
26+ agent->new_name = g_path_get_basename(name);
27 agent->new_folder = NULL;
28 } else {
29- agent->new_name = g_strdup(slash + 1);
30- agent->new_folder = g_strndup(name, slash - name);
31+ agent->new_name = g_path_get_basename(name);
32+ agent->new_folder = g_path_get_dirname(name);
33 }
34 }
35
36--
372.14.1
38
This page took 0.076672 seconds and 4 git commands to generate.