Hi Luiz, On Sun, Dec 08, 2013 at 05:39:37PM +0200, Luiz Augusto von Dentz wrote: > I fixed this myself and applied 1-4, patch 5 is actually wrong since > sdp_next_handle may return values bellow 0x10000 if we run out of OK > handles and patch 6 is not necessary since what is in android/avdtp.c > is what we will be using in the future. How are we going to use those local vars? If they would be global it probably make some (little) sense ... @@ -773,10 +773,9 @@ static int get_send_buffer_size(int sk) socklen_t optlen = sizeof(size); if (getsockopt(sk, SOL_SOCKET, SO_SNDBUF, &size, &optlen) < 0) { - int err = -errno; - error("getsockopt(SO_SNDBUF) failed: %s (%d)", strerror(-err), - -err); - return err; + error("getsockopt(SO_SNDBUF) failed: %s (%d)", strerror(errno), + errno); + return -errno; } /* Regards, Andrei -- 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