diff options
author | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-09-11 14:24:55 -0300 |
---|---|---|
committer | Luiz Augusto von Dentz <luiz.dentz@openbossa.org> | 2008-09-11 14:24:55 -0300 |
commit | 9593b3b600a60d2859cdc7c41ab700f57c915d2d (patch) | |
tree | 756e9236b31103dc489de10ee6c633340b447935 /src | |
parent | 2f9fbeeb5931cda983aa72ed9a53b1f22d0aa85d (diff) |
Fix memleak
Diffstat (limited to 'src')
-rw-r--r-- | src/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device.c b/src/device.c index 5c8208de..5348c296 100644 --- a/src/device.c +++ b/src/device.c @@ -1021,7 +1021,7 @@ static void init_browse(struct browse_req *req) (GCompareFunc) strcasecmp)) return; req->uuids = g_slist_append(req->uuids, - g_strdup(driver->uuids[i])); + driver->uuids[i]); } } |