src/action.c: enforce action arg->key being set

This commit is contained in:
Consolatis 2023-05-12 14:33:12 +02:00
parent d0b52139ed
commit b05b92bb27
3 changed files with 40 additions and 46 deletions

View file

@ -20,7 +20,7 @@ struct action {
struct action *action_create(const char *action_name);
void action_arg_add_str(struct action *action, char *key, const char *value);
void action_arg_add_str(struct action *action, const char *key, const char *value);
void action_arg_from_xml_node(struct action *action, char *nodename, char *content);