mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-15 18:17:32 -05:00
Joe Yates's memory leak patches.
[originally from svn r3650]
This commit is contained in:
@ -71,7 +71,12 @@ void *crcda_make_context(void)
|
||||
|
||||
void crcda_free_context(void *handle)
|
||||
{
|
||||
sfree(handle);
|
||||
struct crcda_ctx *ctx = (struct crcda_ctx *)handle;
|
||||
if (ctx) {
|
||||
sfree(ctx->h);
|
||||
ctx->h = NULL;
|
||||
sfree(ctx);
|
||||
}
|
||||
}
|
||||
|
||||
static void crc_update(uint32 *a, void *b)
|
||||
|
Reference in New Issue
Block a user