View | Details | Raw Unified | Return to bug 199438
Collapse All | Expand All

(-)sys/dev/vt/vt_font.c (-2 / +2 lines)
Lines 41-48 Link Here
41
static MALLOC_DEFINE(M_VTFONT, "vtfont", "vt font");
41
static MALLOC_DEFINE(M_VTFONT, "vtfont", "vt font");
42
42
43
/* Some limits to prevent abnormal fonts from being loaded. */
43
/* Some limits to prevent abnormal fonts from being loaded. */
44
#define	VTFONT_MAXMAPPINGS	8192
44
#define	VTFONT_MAXMAPPINGS	65536
45
#define	VTFONT_MAXGLYPHSIZE	1048576
45
#define	VTFONT_MAXGLYPHSIZE	2097152
46
#define	VTFONT_MAXDIMENSION	128
46
#define	VTFONT_MAXDIMENSION	128
47
47
48
static uint16_t
48
static uint16_t

Return to bug 199438