Index: src/select/font_face.c
===================================================================
--- src/select/font_face.c	(revision 13248)
+++ src/select/font_face.c	(working copy)
@@ -25,6 +25,16 @@
 	font_face->srcs = NULL;
 }
 
+static const css_font_face default_font_face = {
+	NULL,
+	NULL,
+	0,
+	{ ((uint8_t)CSS_FONT_WEIGHT_NORMAL << 2) | 
+	   (uint8_t)CSS_FONT_STYLE_NORMAL },
+	NULL,
+	NULL,
+};
+
 /**
  * Create a font-face
  *
@@ -47,7 +57,7 @@
 	if (f == NULL)
 		return CSS_NOMEM;
 	
-	memset(f, 0, sizeof(css_font_face));
+	memcpy(f, &default_font_face, sizeof(css_font_face));
 	
 	f->alloc = alloc;
 	f->pw = pw;
