From: Christian Fetzer <christian.fetzer@xxxxxxxxxxxx> The function setpath_complete has to be called with a pending_request as user_data. In one possible error case, the current code calls it incorrectly with setpath_data. --- obexd/client/session.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obexd/client/session.c b/obexd/client/session.c index eda3412..a780b8c 100644 --- a/obexd/client/session.c +++ b/obexd/client/session.c @@ -967,7 +967,7 @@ static void setpath_cb(GObex *obex, GError *err, GObexPacket *rsp, p->req_id = g_obex_setpath(obex, next, setpath_cb, p, &err); if (err != NULL) { - setpath_complete(p->session, NULL, err, data); + setpath_complete(p->session, NULL, err, user_data); g_error_free(err); } } -- 1.8.2.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html