diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-07-30 11:04:16 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-07-31 16:46:36 +0200 |
commit | e04e3687485a1988fd4084cca07ca4db4e2e7b96 (patch) | |
tree | 8fb5f5e81fa641f2b7e4bb7c4186151394b538fa /src/cairo-misc.c | |
parent | 8f8da19fd47a51724e035a076628d38fde48863c (diff) |
Remove useless checks for NULL before freeing
This patch has been generated by the following Coccinelle semantic patch:
// Remove useless checks for NULL before freeing
//
// free (NULL) is a no-op, so there is no need to avoid it
@@
expression E;
@@
+ free (E);
+ E = NULL;
- if (unlikely (E != NULL)) {
- free(E);
(
- E = NULL;
|
- E = 0;
)
...
- }
@@
expression E;
@@
+ free (E);
- if (unlikely (E != NULL)) {
- free (E);
- }
Diffstat (limited to 'src/cairo-misc.c')
-rw-r--r-- | src/cairo-misc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cairo-misc.c b/src/cairo-misc.c index c04fe112..27c264b5 100644 --- a/src/cairo-misc.c +++ b/src/cairo-misc.c @@ -207,8 +207,7 @@ slim_hidden_def (cairo_glyph_allocate); void cairo_glyph_free (cairo_glyph_t *glyphs) { - if (glyphs) - free (glyphs); + free (glyphs); } slim_hidden_def (cairo_glyph_free); @@ -258,8 +257,7 @@ slim_hidden_def (cairo_text_cluster_allocate); void cairo_text_cluster_free (cairo_text_cluster_t *clusters) { - if (clusters) - free (clusters); + free (clusters); } slim_hidden_def (cairo_text_cluster_free); |