1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Formatting: another handful of mis-indented labels.

These were indented 2 spaces _further_ than the surrounding code,
instead of 2 spaces less. My bulk-reindentation the other day didn't
detect them because apparently my Emacs configuration can make this
mistake all by itself, so it thought they were right!
This commit is contained in:
Simon Tatham 2022-08-07 18:41:57 +01:00
parent 42bbb58e1b
commit 426901b891

View File

@ -1052,7 +1052,7 @@ static PageantAsyncOp *pageant_make_op(
pageant_client_log(pc, reqid, "reply: SSH1_AGENT_RSA_RESPONSE");
challenge1_cleanup:
challenge1_cleanup:
if (response)
mp_free(response);
mp_free(challenge);
@ -1165,7 +1165,7 @@ static PageantAsyncOp *pageant_make_op(
fail("key already present");
}
add1_cleanup:
add1_cleanup:
if (key) {
freersakey(key);
sfree(key);
@ -1226,7 +1226,7 @@ static PageantAsyncOp *pageant_make_op(
fail("key already present");
}
add2_cleanup:
add2_cleanup:
if (key) {
if (key->key)
ssh_key_free(key->key);