From: Simon Tatham Date: Mon, 19 Sep 2011 16:21:25 +0000 (+0000) Subject: Add a missing initialisation to NULL. X-Git-Tag: 0.63~254 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=73444adc5011148e25abf37be59dddcc11bb8695;p=PuTTY.git Add a missing initialisation to NULL. [originally from svn r9308] --- diff --git a/unix/gtkfont.c b/unix/gtkfont.c index 0f2dc581..5db582a4 100644 --- a/unix/gtkfont.c +++ b/unix/gtkfont.c @@ -1567,6 +1567,7 @@ unifont *multifont_create(GtkWidget *widget, const char *name, if (!font) return NULL; + fallback = NULL; if (font->want_fallback) { for (i = 0; i < lenof(unifont_types); i++) { if (unifont_types[i]->create_fallback) {