summaryrefslogtreecommitdiff
path: root/btio
diff options
context:
space:
mode:
authorMichael Janssen <jamuraa@chromium.org>2014-10-31 11:23:35 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-11-03 17:17:12 +0200
commit6353123e76a92441d8d93f2b48a4683e53854116 (patch)
treeb98d38efb83dd8ee8326eb2b4b154762cdcbfce8 /btio
parent46d35351cce71fc2873921628c159b3f9bf5069d (diff)
downloadbluez-6353123e76a92441d8d93f2b48a4683e53854116.tar.gz
btio: Fix uninitialized usage compilation error
When compiling with --enable-maintainer-mode these throw errors because of -Werror=maybe-uninitialized
Diffstat (limited to 'btio')
-rw-r--r--btio/btio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/btio/btio.c b/btio/btio.c
index 6277507ed..4ec286cb3 100644
--- a/btio/btio.c
+++ b/btio/btio.c
@@ -970,7 +970,7 @@ static gboolean l2cap_get(int sock, GError **err, BtIOOption opt1,
struct l2cap_options l2o;
int flags;
uint8_t dev_class[3];
- uint16_t handle;
+ uint16_t handle = 0;
socklen_t len;
gboolean flushable = FALSE, have_dst = FALSE;
uint32_t priority;
@@ -1180,7 +1180,7 @@ static gboolean rfcomm_get(int sock, GError **err, BtIOOption opt1,
int flags;
socklen_t len;
uint8_t dev_class[3];
- uint16_t handle;
+ uint16_t handle = 0;
if (!get_src(sock, &src, sizeof(src), err))
return FALSE;
@@ -1311,7 +1311,7 @@ static gboolean sco_get(int sock, GError **err, BtIOOption opt1, va_list args)
struct sco_options sco_opt;
socklen_t len;
uint8_t dev_class[3];
- uint16_t handle;
+ uint16_t handle = 0;
len = sizeof(sco_opt);
memset(&sco_opt, 0, len);