summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rest.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rest.c b/src/rest.c
index a3377bc..9ef1204 100644
--- a/src/rest.c
+++ b/src/rest.c
@@ -493,6 +493,12 @@ static int og_cmd_wol(json_t *element, struct og_msg_params *params)
(char *)params->wol_type))
return -1;
+ for (i = 0; i < params->ips_array_len; ++i) {
+ free((void *)params->ips_array[i]);
+ free((void *)params->mac_array[i]);
+ free((void *)params->netmask_array[i]);
+ }
+
return 0;
}