* nsfont.m (nsfont_close): Remove useless test.
* term.c (delete_tty): Likewise.
* w32.c (system_process_attributes): Likewise.
* w32font.c (w32font_close): Likewise.
* xfaces.c (x_free_gc): Likewise.
* xselect.c (buffer): Likewise.
+2009-06-29 Jim Meyering <meyering@redhat.com>
+
+ Remove useless if-before-xfree test.
+ * nsfont.m (nsfont_close): Remove useless test.
+ * term.c (delete_tty): Likewise.
+ * w32.c (system_process_attributes): Likewise.
+ * w32font.c (w32font_close): Likewise.
+ * xfaces.c (x_free_gc): Likewise.
+ * xselect.c (buffer): Likewise.
+
2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
* process.c (send_process): Keep decoded string in a local
for (i =0; i<0x100; i++)
{
- if (font_info->glyphs[i])
- xfree (font_info->glyphs[i]);
- if (font_info->metrics[i])
- xfree (font_info->metrics[i]);
+ xfree (font_info->glyphs[i]);
+ xfree (font_info->metrics[i]);
}
[font_info->nsfont release];
#ifdef NS_IMPL_COCOA
xfree (tty->old_tty);
xfree (tty->Wcm);
- if (tty->termcap_strings_buffer)
- xfree (tty->termcap_strings_buffer);
- if (tty->termcap_term_buffer)
- xfree (tty->termcap_term_buffer);
+ xfree (tty->termcap_strings_buffer);
+ xfree (tty->termcap_term_buffer);
bzero (tty, sizeof (struct tty_display_info));
xfree (tty);
}
}
}
- if (buf)
- xfree (buf);
+ xfree (buf);
}
if (!result)
{
{
for (i = 0; i < w32_font->n_cache_blocks; i++)
{
- if (w32_font->cached_metrics[i])
- xfree (w32_font->cached_metrics[i]);
+ xfree (w32_font->cached_metrics[i]);
}
xfree (w32_font->cached_metrics);
w32_font->cached_metrics = NULL;
struct frame *f;
GC gc;
{
- if (gc)
- xfree (gc);
+ xfree (gc);
}
#endif /* HAVE_NS */
if (!data || !format)
{
- if (data)
- xfree (data);
+ xfree (data);
return Qnil;
}