Small style(9) improvements.

Approved by:	dim (mentor)
This commit is contained in:
David Chisnall 2011-12-15 11:16:41 +00:00
parent 9731596a5e
commit 4fb4550854

View File

@ -51,10 +51,12 @@ static struct quick_exit_handler *handlers;
int
at_quick_exit(void (*func)(void))
{
struct quick_exit_handler *h = malloc(sizeof(struct quick_exit_handler));
struct quick_exit_handler *h;
h = malloc(sizeof(*h));
if (NULL == h)
return 1;
return (1);
h->cleanup = func;
pthread_mutex_lock(&atexit_mutex);
h->next = handlers;