commit | b1ec21d259c72559e2d170a09efc059d9fc58347 | [log] [tgz] |
---|---|---|
author | Tim Duesterhus <tim@bastelstu.be> | Sat Apr 22 17:47:32 2023 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Apr 23 00:28:25 2023 +0200 |
tree | 816dcc48e096a71df54a966c44f92a8514295e94 | |
parent | 3a8c63d48d45cc18b68ab85f1237632e6f4c4f46 [diff] |
CLEANUP: Stop checking the pointer before calling `tasklet_free()` Changes performed with this Coccinelle patch: @@ expression e; @@ - if (e != NULL) { tasklet_free(e); - } @@ expression e; @@ - if (e) { tasklet_free(e); - } @@ expression e; @@ - if (e) tasklet_free(e); @@ expression e; @@ - if (e != NULL) tasklet_free(e); See GitHub Issue #2126