Message ID | 20210324193412.488233-1-brian.gix@intel.com |
---|---|
State | New |
Headers | show |
Series | [BlueZ] mesh: Fix segmented msg RX with friendship | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=454865 ---Test result--- ############################## Test: CheckPatch - PASS ############################## Test: CheckGitLint - PASS ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
diff --git a/mesh/net.c b/mesh/net.c index 6acd9bc7b..aa220f762 100644 --- a/mesh/net.c +++ b/mesh/net.c @@ -1165,6 +1165,7 @@ static struct mesh_friend_msg *mesh_friend_msg_new(uint8_t seg_max) size += (seg_max + 1) * sizeof(struct mesh_friend_seg_12); frnd_msg = l_malloc(size); + memset(frnd_msg, 0, size); } else frnd_msg = l_new(struct mesh_friend_msg, 1);