ec6cd14c7a
Add a semantic patch for removing checks that cause free(3) to only be called with a NULL pointer, as that must be a programming mistake. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
12 lines
82 B
Plaintext
12 lines
82 B
Plaintext
@@
|
|
expression E;
|
|
@@
|
|
- if (E)
|
|
free(E);
|
|
|
|
@@
|
|
expression E;
|
|
@@
|
|
- if (!E)
|
|
free(E);
|