Fixed a memory leak, receiver contexts not getting freed upon exit

Signed-off-by: David Sommerseth <davids@redhat.com>
This commit is contained in:
David Sommerseth 2010-02-23 10:39:59 +01:00
parent 2ff7b647b2
commit d5ae77c4af
1 changed files with 3 additions and 1 deletions

View File

@ -147,7 +147,9 @@ again:
if (done < DATASIZE)
goto again;
}
if (ctx) {
free(ctx);
}
return NULL;
}