From 20921e613e78599dfbef2d805d3bf3dfad39a7e6 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 4 May 2004 11:20:47 +0000 Subject: [PATCH] Forgot to initialise the font variables in the Windows frontend structure. [originally from svn r4200] --- windows.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/windows.c b/windows.c index 6fb651c..4213e4c 100644 --- a/windows.c +++ b/windows.c @@ -328,6 +328,9 @@ static frontend *new_window(HINSTANCE inst) fe->timer = 0; + fe->fonts = NULL; + fe->nfonts = fe->fontsize = 0; + { int i, ncolours; float *colours;