diff options
Diffstat (limited to 'libX11/src/FontNames.c')
-rw-r--r-- | libX11/src/FontNames.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libX11/src/FontNames.c b/libX11/src/FontNames.c index b5bc7b4ba..764711559 100644 --- a/libX11/src/FontNames.c +++ b/libX11/src/FontNames.c @@ -66,7 +66,7 @@ int *actualCount) /* RETURN */ if (rep.nFonts) { flist = Xmalloc (rep.nFonts * sizeof(char *)); - if (rep.length < (LONG_MAX >> 2)) { + if (rep.length < (INT_MAX >> 2)) { rlen = rep.length << 2; ch = Xmalloc(rlen + 1); /* +1 to leave room for last null-terminator */ |