int ast_register_atexit(void (*func)(void))
{
- int res = -1;
struct ast_atexit *ae;
+
+ if (!(ae = ast_calloc(1, sizeof(*ae))))
+ return -1;
+
+ ae->func = func;
+
ast_unregister_atexit(func);
+
AST_LIST_LOCK(&atexits);
- if ((ae = ast_calloc(1, sizeof(*ae)))) {
- AST_LIST_INSERT_HEAD(&atexits, ae, list);
- ae->func = func;
- res = 0;
- }
+ AST_LIST_INSERT_HEAD(&atexits, ae, list);
AST_LIST_UNLOCK(&atexits);
- return res;
+
+ return 0;
}
void ast_unregister_atexit(void (*func)(void))
{
- struct ast_atexit *ae;
+ struct ast_atexit *ae = NULL;
+
AST_LIST_LOCK(&atexits);
AST_LIST_TRAVERSE_SAFE_BEGIN(&atexits, ae, list) {
if (ae->func == func) {
}
AST_LIST_TRAVERSE_SAFE_END
AST_LIST_UNLOCK(&atexits);
+
+ if (ae)
+ free(ae);
}
static int fdprint(int fd, const char *s)