summaryrefslogtreecommitdiffstats
path: root/audio/sink.c
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2007-08-13 19:52:01 +0000
committerJohan Hedberg <johan.hedberg@nokia.com>2007-08-13 19:52:01 +0000
commitbc37b7850f1bd8018d3b42d6530bf6792b715613 (patch)
tree30f5bcaa9768dd1135102cec87de71f718e62170 /audio/sink.c
parent5b5cfaadb312600c58362617080e29fbf036712c (diff)
Add some error checks to sink_get_config
Diffstat (limited to 'audio/sink.c')
-rw-r--r--audio/sink.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/audio/sink.c b/audio/sink.c
index 155170e6..2219a9e4 100644
--- a/audio/sink.c
+++ b/audio/sink.c
@@ -362,9 +362,12 @@ int sink_get_config(struct device *dev, int sock, struct ipc_packet *req,
int pkt_len, struct ipc_data_cfg **rsp, int *fd)
{
struct sink *sink = dev->sink;
- int err = EINVAL;
+ int err;
struct pending_connect *c = NULL;
+ if (sink->c)
+ return -EBUSY;
+
if (sink->state == AVDTP_STATE_STREAMING)
goto proceed;
@@ -375,27 +378,30 @@ int sink_get_config(struct device *dev, int sock, struct ipc_packet *req,
c->sock = sock;
c->pkt = g_malloc(pkt_len);
memcpy(c->pkt, req, pkt_len);
- sink->c = c;
if (sink->state == AVDTP_STATE_IDLE)
err = avdtp_discover(sink->session, discovery_complete, dev);
else if (sink->state < AVDTP_STATE_STREAMING)
err = avdtp_start(sink->session, sink->stream);
else
- goto error;
+ err = -EINVAL;
if (err < 0)
- goto error;
+ goto failed;
+
+ sink->c = c;
return 1;
proceed:
- if (!a2dp_get_config(sink->stream, rsp, fd))
- goto error;
+ if (!a2dp_get_config(sink->stream, rsp, fd)) {
+ err = -EINVAL;
+ goto failed;
+ }
return 0;
-error:
+failed:
if (c)
pending_connect_free(c);
return -err;