Skip to content

Commit

Permalink
block on every message sent to avoid caching & leaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Gpinchon committed Jul 3, 2024
1 parent 2dd0294 commit b45d1f4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Service/src/DBUS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ ::DBusMessage* Connection::Send(::DBusMessage* a_Msg) const

void Connection::SendNoReply(::DBusMessage* a_Msg) const
{
dbus_connection_send(
data,
a_Msg,
nullptr);
Message message = Send(a_Msg);
}

Message::~Message()
Expand Down

0 comments on commit b45d1f4

Please sign in to comment.