Message ID | 20231211193739.64318-1-prestwoj@gmail.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | dpp: set "" arguments to Release method call | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
prestwoj/iwd-alpine-ci-fetch | success | Fetch PR |
prestwoj/iwd-ci-gitlint | success | GitLint |
prestwoj/iwd-ci-fetch | success | Fetch PR |
prestwoj/iwd-ci-makedistcheck | success | Make Distcheck |
prestwoj/iwd-ci-incremental_build | success | Incremental build not run PASS |
prestwoj/iwd-alpine-ci-makedistcheck | success | Make Distcheck |
prestwoj/iwd-alpine-ci-incremental_build | success | Incremental build not run PASS |
prestwoj/iwd-ci-build | success | Build - Configure |
prestwoj/iwd-alpine-ci-build | success | Build - Configure |
prestwoj/iwd-ci-makecheckvalgrind | success | Make Check w/Valgrind |
prestwoj/iwd-ci-clang | success | clang PASS |
prestwoj/iwd-ci-makecheck | success | Make Check |
prestwoj/iwd-alpine-ci-makecheckvalgrind | success | Make Check w/Valgrind |
prestwoj/iwd-alpine-ci-makecheck | success | Make Check |
prestwoj/iwd-ci-testrunner | success | test-runner PASS |
Hi James, On 12/11/23 13:37, James Prestwood wrote: > Without this the DBus message does not initialize the message > correctly which causes future DBus calls to fail. > --- > src/dpp.c | 1 + > 1 file changed, 1 insertion(+) > Applied, thanks. Regards, -Denis
diff --git a/src/dpp.c b/src/dpp.c index c7cd4bb3..1ff4b99e 100644 --- a/src/dpp.c +++ b/src/dpp.c @@ -391,6 +391,7 @@ static void dpp_agent_release(struct dpp_sm *dpp) dpp->agent->path, IWD_SHARED_CODE_AGENT_INTERFACE, "Release"); + l_dbus_message_set_arguments(msg, ""); l_dbus_message_set_no_reply(msg, true); l_dbus_send(dbus_get_bus(), msg); }