diff mbox series

[BlueZ,v1] client: make ad_clear_data() clear the correct structure

Message ID 66D06D2D-01A5-4ED2-BF1D-EDABC9F42146@metanate.com
State Superseded
Headers show
Series [BlueZ,v1] client: make ad_clear_data() clear the correct structure | expand

Commit Message

Northfield Stuart Dec. 7, 2023, 12:39 p.m. UTC
Fix longstanding ‘cut and paste’ bug which clears Manfacturer Data 
structure when it should be clearing Data structure

---

Comments

bluez.test.bot@gmail.com Dec. 7, 2023, 1:16 p.m. UTC | #1
This is an automated email and please do not reply to this email.

Dear Submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
While preparing the CI tests, the patches you submitted couldn't be applied to the current HEAD of the repository.

----- Output -----

error: patch failed: client/advertising.c:757
error: client/advertising.c: patch does not apply
hint: Use 'git am --show-current-patch' to see the failed patch

Please resolve the issue and submit the patches again.


---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/client/advertising.c b/client/advertising.c
index a7474d6a2..b8e3f4ab3 100644
--- a/client/advertising.c
+++ b/client/advertising.c
@@ -757,7 +757,7 @@  void ad_disable_manufacturer(DBusConnection *conn)
   static void ad_clear_data(void)
 {
-    memset(&ad.manufacturer, 0, sizeof(ad.manufacturer));
+    memset(&ad.data, 0, sizeof(ad.data));
       return bt_shell_noninteractive_quit(EXIT_SUCCESS);
 }