diff options
author | marha <marha@users.sourceforge.net> | 2013-07-22 14:47:25 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-07-22 14:47:25 +0200 |
commit | b6aadb8490bdacf33196fa0898fe1247b9a8ee2c (patch) | |
tree | fd3eb9fb24cac7733fa7b8afab87fa6e46247c02 /libX11/src/GetFPath.c | |
parent | 89bc3ee988b62eb5e10284bac32a176955546410 (diff) | |
download | vcxsrv-b6aadb8490bdacf33196fa0898fe1247b9a8ee2c.tar.gz vcxsrv-b6aadb8490bdacf33196fa0898fe1247b9a8ee2c.tar.bz2 vcxsrv-b6aadb8490bdacf33196fa0898fe1247b9a8ee2c.zip |
libX11 mesa git update 22 Jul 2013
libX11 commit 24d3ee0d08f24e23c91d55702f010f73d7b908e5
mesa commit 190312949e8ce2c1dc884d4db5d6a44511666641
Diffstat (limited to 'libX11/src/GetFPath.c')
-rw-r--r-- | libX11/src/GetFPath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libX11/src/GetFPath.c b/libX11/src/GetFPath.c index abd4a5dbd..8f8c6144a 100644 --- a/libX11/src/GetFPath.c +++ b/libX11/src/GetFPath.c @@ -50,7 +50,7 @@ char **XGetFontPath( if (rep.nPaths) { flist = Xmalloc(rep.nPaths * sizeof (char *)); - if (rep.length < (LONG_MAX >> 2)) { + if (rep.length < (INT_MAX >> 2)) { nbytes = (unsigned long) rep.length << 2; ch = Xmalloc (nbytes + 1); /* +1 to leave room for last null-terminator */ |