summaryrefslogtreecommitdiff
path: root/src/sdp-client.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2013-10-22 12:03:20 +0300
committerJohan Hedberg <johan.hedberg@intel.com>2013-10-22 13:39:21 +0300
commit14d8c3cc9412950d430576225eb5bab2f0fd68d7 (patch)
tree8b4a1eedece140cc4c9835ac1f6ab4ef9c39e146 /src/sdp-client.c
parent9bda7e8c2130de9a3340ebd0e6cc1dedc2eae338 (diff)
downloadbluez-14d8c3cc9412950d430576225eb5bab2f0fd68d7.tar.gz
core: Fix crash while processing SDP records
This was introduced by commit 073714c3ff70379131be3e19d9ccb8b85fe3f0d9 which attempted to treat the return of sdp_process but caused the crash bellow because sdp_process actually calls search_completed_cb if it fails: Invalid read of size 8 at 0x44FC93: search_process_cb (sdp-client.c:214) by 0x3D46047E05: g_main_context_dispatch (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x3D46048157: ??? (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x3D46048559: g_main_loop_run (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x40A2DF: main (main.c:587) Address 0x59febd0 is 16 bytes inside a block of size 72 free'd at 0x4A074C4: free (in /usr/lib64/valgrind/vgpreload_memcheck-amd64-linux.so) by 0x3D4604D9AE: g_free (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x44FE44: search_completed_cb (sdp-client.c:192) by 0x4732E7: sdp_process (sdp.c:4341) by 0x44FCD8: search_process_cb (sdp-client.c:206) by 0x3D46047E05: g_main_context_dispatch (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x3D46048157: ??? (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x3D46048559: g_main_loop_run (in /usr/lib64/libglib-2.0.so.0.3600.3) by 0x40A2DF: main (main.c:587)
Diffstat (limited to 'src/sdp-client.c')
-rw-r--r--src/sdp-client.c22
1 files changed, 7 insertions, 15 deletions
diff --git a/src/sdp-client.c b/src/sdp-client.c
index 1221f5ecd..51f304825 100644
--- a/src/sdp-client.c
+++ b/src/sdp-client.c
@@ -196,31 +196,23 @@ static gboolean search_process_cb(GIOChannel *chan, GIOCondition cond,
gpointer user_data)
{
struct search_context *ctxt = user_data;
- int err;
if (cond & (G_IO_ERR | G_IO_HUP | G_IO_NVAL)) {
- err = -EIO;
- goto failed;
- }
-
- err = sdp_process(ctxt->session);
- if (err < 0)
- goto failed;
-
- return TRUE;
-
-failed:
- if (err) {
sdp_close(ctxt->session);
ctxt->session = NULL;
if (ctxt->cb)
- ctxt->cb(NULL, err, ctxt->user_data);
+ ctxt->cb(NULL, -EIO, ctxt->user_data);
search_context_cleanup(ctxt);
+ return FALSE;
}
- return FALSE;
+ /* If sdp_process fails it calls search_completed_cb */
+ if (sdp_process(ctxt->session) < 0)
+ return FALSE;
+
+ return TRUE;
}
static gboolean connect_watch(GIOChannel *chan, GIOCondition cond,