Commit 59a8999f authored by Lucas Russo's avatar Lucas Russo

hal/dev_io/dev_io.c: fix missing fe_smio_id_str free

parent 141664a1
......@@ -178,6 +178,9 @@ int main (int argc, char *argv[])
dev_id);
/* We don't need it anymore */
str_p = &fe_smio_id_str;
free (*str_p);
fe_smio_id_str = NULL;
str_p = &dev_type;
free (*str_p);
dev_type = NULL;
......@@ -241,6 +244,8 @@ err_devio:
err_exit:
str_p = &log_file_name;
free (*str_p);
str_p = &fe_smio_id_str;
free (*str_p);
str_p = &broker_endp;
free (*str_p);
str_p = &dev_id_str;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment