commit b733b69558daafd474777110a484206c0fa4bc78
parent 864f86d559e601e54004c8c92d05fb977f260550
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Sat, 14 Jun 2025 13:51:26 +0200
perf_replies: minor readability improvement
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tools/perf_replies.c b/src/tools/perf_replies.c
@@ -1638,7 +1638,7 @@ init_data (void)
return 0; /* Success */
/* Cleanup */
- while (--i < num_resps)
+ while (i-- != 0)
MHD_response_destroy (resps[i]);
free (resps);
resps = NULL;