summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xfontsel.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/xfontsel.c b/xfontsel.c
index c885d71..7740914 100644
--- a/xfontsel.c
+++ b/xfontsel.c
@@ -444,14 +444,13 @@ struct ParseRec {
void GetFontNames(XtPointer closure)
{
Display *dpy = (Display*)closure;
- ParseRec *parseRec = XtNew(ParseRec);
+ ParseRec *parseRec;
int f, field, count;
String *fontNames;
Boolean *b;
int work_priority = 0;
- fontNames = parseRec->fontNames =
- XListFonts(dpy, AppRes.pattern, 32767, &numFonts);
+ fontNames = XListFonts(dpy, AppRes.pattern, 32767, &numFonts);
fonts = (FontValues*)XtMalloc( numFonts*sizeof(FontValues) );
fontInSet = (Boolean*)XtMalloc( numFonts*sizeof(Boolean) );
@@ -466,6 +465,8 @@ void GetFontNames(XtPointer closure)
return;
}
numBadFonts = 0;
+ parseRec = XtNew(ParseRec);
+ parseRec->fontNames = fontNames;
parseRec->fonts = fonts;
parseRec->num_fonts = count = matchingFontCount = numFonts;
parseRec->fieldValues = fieldValues;