btio: Fix compilation warning

This patch fixes a compilation warning regarding btio/btio.c. Actually
this warning seems a false positive by Ubuntu Natty GCC version. A new
bug on Ubuntu bug system was opened but if you do not want to wait until
it is analyzed, just apply this minor fix.

btio/btio.c: In function 'bt_io_get':
btio/btio.c:803:11: warning: 'flushable' may be used uninitialized in
this function
This commit is contained in:
Anderson Briglia 2011-05-05 14:55:24 -04:00 committed by Marcel Holtmann
parent 478e0ec81a
commit ce861145f0
1 changed files with 1 additions and 1 deletions

View File

@ -800,7 +800,7 @@ static gboolean l2cap_get(int sock, GError **err, BtIOOption opt1,
uint8_t dev_class[3];
uint16_t handle;
socklen_t len;
gboolean flushable;
gboolean flushable = FALSE;
len = sizeof(l2o);
memset(&l2o, 0, len);