fixed small memory leak

This commit is contained in:
Rainer Gerhards 2008-03-20 13:52:43 +00:00
parent 04d6e9cc01
commit eb388d6d8a

View File

@ -124,6 +124,8 @@ static rsRetVal addListener(void __attribute__((unused)) *pVal, uchar *pNewVal)
CHKiRet(relpEngineAddListner(pRelpEngine, pNewVal));
free(pNewVal); /* we do no longer need it */
finalize_it:
RETiRet;
}