Fix memory leaks

This commit is contained in:
Andreas Öman 2008-09-26 05:07:01 +00:00
parent 47f22e3dfd
commit c994aa991b
2 changed files with 2 additions and 0 deletions

View file

@ -298,6 +298,7 @@ channels_load(void)
continue;
channel_load_one(c, atoi(f->hmf_name));
}
htsmsg_destroy(l);
}
}

View file

@ -89,6 +89,7 @@ dtable_load(dtable_t *dt)
htsmsg_destroy(m);
}
}
htsmsg_destroy(l);
}
return records;
}