commit | fe83f589068d8cd90ea63fabadd60408ae80cce1 | [log] [tgz] |
---|---|---|
author | Tim Duesterhus <tim@bastelstu.be> | Sat Apr 22 17:47:34 2023 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Apr 23 00:28:25 2023 +0200 |
tree | 7534e1fc00388960ce9a4b14bd22f98fd1d23fe0 | |
parent | c18e244515cdf860a3be59f0fc5622b8294099e7 [diff] |
CLEANUP: Stop checking the pointer before calling `task_free()` Changes performed with this Coccinelle patch: @@ expression e; @@ - if (e != NULL) { task_destroy(e); - } @@ expression e; @@ - if (e) { task_destroy(e); - } @@ expression e; @@ - if (e) task_destroy(e); @@ expression e; @@ - if (e != NULL) task_destroy(e);