anastasis-gtk

Demonstrator GUI for Anastasis
Log | Files | Refs | README | LICENSE

commit f9121a10a59923d02e2b6a6e64299159599ef5e5
parent 7f8b3a0ca1740916b3511692d566b7e70a685253
Author: Sebastian <sebasjm@gmail.com>
Date:   Tue, 28 Jun 2022 11:42:09 -0300

fix: clicking into a policy to edit crash the app

Diffstat:
Msrc/anastasis/anastasis-gtk_pe-edit-policy.c | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/src/anastasis/anastasis-gtk_pe-edit-policy.c b/src/anastasis/anastasis-gtk_pe-edit-policy.c @@ -278,6 +278,17 @@ ap_matches (const char *type, size_t index; json_t *method; + const char *status; + + status = json_string_value (json_object_get (ap, + "status")); + + if (0 != strcasecmp (status, + "ok")) + { + return false; + } + methods = json_object_get (ap, "methods"); GNUNET_break (NULL != methods);