1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32:48 -05:00

Fix a few memory leaks spotted by Coverity.

This commit is contained in:
Simon Tatham
2021-04-09 17:55:31 +01:00
parent c5724c46a0
commit fc8550c07b
3 changed files with 11 additions and 4 deletions

View File

@ -127,6 +127,8 @@ void cli_main_loop(cliloop_pre_t pre, cliloop_post_t post, void *ctx)
if (!post(ctx, extra_handle_index))
break;
}
sfree(sklist);
}
bool cliloop_null_pre(void *vctx, const HANDLE **eh, size_t *neh)