libest
libest copied to clipboard
Remove unnecessary null pointer checks
An extra null pointer check is not needed in functions like the following.
Would you like to apply the following semantic patch to find more update candidates?
@Remove_unnecessary_pointer_checks@
expression x;
@@
-if (x)
free(x);