Fix memory leak.

This commit is contained in:
Andrew Johnson
2009-04-03 01:57:11 +00:00
parent f4311a3f9b
commit 7228190dde

View File

@@ -53,6 +53,7 @@ static epicsThreadPrivateId exitPvtPerThread = 0;
static void destroyExitPvt ( exitPvt * pep )
{
ellFree ( &pep->list );
free ( pep );
}
static exitPvt * createExitPvt ()