Author: Reiner Herrmann <reiner@reiner-h.de>
Description: Initialize font table to not leak random memory in output

Index: gle-graphics/src/makefmt/makefmt.cpp
===================================================================
--- gle-graphics.orig/src/makefmt/makefmt.cpp
+++ gle-graphics/src/makefmt/makefmt.cpp
@@ -185,7 +185,7 @@ void writefmt(const char* fmtname, const
 		perror ("Can't open output file");
 		exit(1);
 	}
-	GLEFontTable fnt;
+	GLEFontTable fnt = {0};
 	fnt.encoding = 1;
 	if (strcmp(fi->gfi->encodingScheme,"TEXENCODING") == 0) {
 		fnt.encoding = 3;
