don't forget to free the error struct

This commit is contained in:
Michael Ploujnikov 2010-02-06 13:18:32 -05:00
parent c64984b859
commit 25ec9a91f7

View file

@ -58,7 +58,10 @@ static void
lumiera_error_tls_delete (void* err)
{
if (err)
free (((LumieraErrorcontext)err)->extra);
{
free (((LumieraErrorcontext)err)->extra);
free (err);
}
}
static void