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

A collection of small bug fixes from Chris West, apparently spotted by

Coverity: assorted language-use goofs like freeing the wrong thing or
forgetting to initialise a string on all code paths.

[originally from svn r9889]
This commit is contained in:
Simon Tatham
2013-07-01 17:56:33 +00:00
parent c5876a8ba2
commit bbc9709b48
4 changed files with 4 additions and 4 deletions

2
ssh.c
View File

@ -9685,7 +9685,7 @@ static void ssh_free(void *handle)
while (ssh->qhead) {
struct queued_handler *qh = ssh->qhead;
ssh->qhead = qh->next;
sfree(ssh->qhead);
sfree(qh);
}
ssh->qhead = ssh->qtail = NULL;