Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c67b9ab authored by Hsin-chen Chuang's avatar Hsin-chen Chuang Committed by Gerrit Code Review
Browse files

Merge "floss: topshim: Fix pointers that point to dropped objects"

parents e06d1735 1197a76b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ impl BtSocket {
        };

        let uuid_ptr = match uuid {
            Some(u) => &u as *const Uuid,
            Some(ref u) => u as *const Uuid,
            None => std::ptr::null(),
        };

@@ -199,7 +199,7 @@ impl BtSocket {
        };

        let uuid_ptr = match uuid {
            Some(u) => &u as *const Uuid,
            Some(ref u) => u as *const Uuid,
            None => std::ptr::null(),
        };