From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CCD04C433EF for ; Wed, 22 Jun 2022 18:26:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233117AbiFVS06 (ORCPT ); Wed, 22 Jun 2022 14:26:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50342 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229688AbiFVS05 (ORCPT ); Wed, 22 Jun 2022 14:26:57 -0400 Received: from smtp.github.com (out-18.smtp.github.com [192.30.252.201]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E51B4403C7 for ; Wed, 22 Jun 2022 11:26:56 -0700 (PDT) Received: from github.com (hubbernetes-node-6dadf14.va3-iad.github.net [10.48.206.61]) by smtp.github.com (Postfix) with ESMTPA id 45A4D340489 for ; Wed, 22 Jun 2022 11:26:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1655922416; bh=l9d7gy04fn7iCZI9zb3OZ2bnPkI4htlkqb9EVDFskfQ=; h=Date:From:To:Subject:From; b=Y04iHs5jbA/HlD7Sr6Lfd4Qj2n8atLq3hU6OUtAle4+rO1Y6Ea1NjdFy/Y1aMzrmy PKFc7/nz6SowwGKFY3c2KF7UwxK5rx/cXPxgSeNsKMitLudlT23F/CRcixZuVJuTp1 uyf8ew5FeKQ75L/x4Nv1GN7i9YZEh+E6Sz377N/s= Date: Wed, 22 Jun 2022 11:26:56 -0700 From: Luiz Augusto von Dentz To: linux-bluetooth@vger.kernel.org Message-ID: Subject: [bluez/bluez] e4fd2d: client/player: Enable acquiring multiple transports Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-GitHub-Recipient-Address: linux-bluetooth@vger.kernel.org X-Auto-Response-Suppress: All Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org Branch: refs/heads/master Home: https://github.com/bluez/bluez Commit: e4fd2dc5aa959ba430ee0038e4d135e1a7530ad4 https://github.com/bluez/bluez/commit/e4fd2dc5aa959ba430ee0038e4d135e1a7530ad4 Author: Luiz Augusto von Dentz Date: 2022-06-22 (Wed, 22 Jun 2022) Changed paths: M client/player.c Log Message: ----------- client/player: Enable acquiring multiple transports This enables acquiring multiple transports simultaneously. Commit: 33c96ca658fd7a0d358dd714decf465ff17ee043 https://github.com/bluez/bluez/commit/33c96ca658fd7a0d358dd714decf465ff17ee043 Author: Luiz Augusto von Dentz Date: 2022-06-22 (Wed, 22 Jun 2022) Changed paths: M client/player.c Log Message: ----------- client/player: Fixes errors found by scan-build This fixes the following errors: client/player.c:1406:44: warning: Dereference of null pointer [core.NullDereference] reply = endpoint_select_config_reply(msg, p->data.iov_base, ^~~~~~~~~~~~~~~~ client/player.c:1866:2: warning: 3rd function call argument is an uninitialized value [core.CallAndMessage] iov_append(&cfg->caps, data, len); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Commit: 7f92f75e88b66ba73db5a676c35c704e213dcd70 https://github.com/bluez/bluez/commit/7f92f75e88b66ba73db5a676c35c704e213dcd70 Author: Luiz Augusto von Dentz Date: 2022-06-22 (Wed, 22 Jun 2022) Changed paths: M client/advertising.c Log Message: ----------- client/advertising: Fixes errors found by scan-build This fixes the following errors: client/advertising.c:129:4: warning: Value stored to 'n' is never read [deadcode.DeadStores] n = sizeof(str) - 1; ^ ~~~~~~~~~~~~~~~ client/advertising.c:1012:25: warning: Dereference of null pointer (loaded from variable 'min') [core.NullDereference] if (ad.min_interval != *min) { ^~~~ Compare: https://github.com/bluez/bluez/compare/b8b3277ba387...7f92f75e88b6