diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-08-10 23:57:55 -0700 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2016-10-19 21:40:28 +0200 |
commit | d33cf0446fa6bd838f0020da2fd4a0884c2bc5ef (patch) | |
tree | 705b14146584bc166d2a05a2e9838d9a6c34a505 /nx-X11/lib/X11/cmsInt.c | |
parent | c161df4fee61819a28089682963cc2e721ca22c8 (diff) | |
download | nx-libs-d33cf0446fa6bd838f0020da2fd4a0884c2bc5ef.tar.gz nx-libs-d33cf0446fa6bd838f0020da2fd4a0884c2bc5ef.tar.bz2 nx-libs-d33cf0446fa6bd838f0020da2fd4a0884c2bc5ef.zip |
Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc
sizeof() returns size_t, malloc() & calloc() expect sizes in size_t,
don't strip down to unsigned int and re-expand unnecessarily.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Backported-to-NX-by: Ulrich Sibiller <uli42@gmx.de>
Diffstat (limited to 'nx-X11/lib/X11/cmsInt.c')
-rw-r--r-- | nx-X11/lib/X11/cmsInt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/lib/X11/cmsInt.c b/nx-X11/lib/X11/cmsInt.c index cefa1e680..f4aef04ff 100644 --- a/nx-X11/lib/X11/cmsInt.c +++ b/nx-X11/lib/X11/cmsInt.c @@ -183,7 +183,7 @@ _XcmsInitDefaultCCCs( * Create an array of XcmsCCC structures, one for each screen. * They serve as the screen's default CCC. */ - if (!(ccc = Xcalloc((unsigned)nScrn, (unsigned) sizeof(XcmsCCCRec)))) { + if (!(ccc = Xcalloc((unsigned)nScrn, sizeof(XcmsCCCRec)))) { return(0); } dpy->cms.defaultCCCs = (XPointer)ccc; @@ -322,7 +322,7 @@ _XcmsInitScrnInfo( * here are referenced by the default CCC. */ if (!(defaultccc->pPerScrnInfo = - Xcalloc(1, (unsigned) sizeof(XcmsPerScrnInfo)))) { + Xcalloc(1, sizeof(XcmsPerScrnInfo)))) { return(0); } defaultccc->pPerScrnInfo->state = XcmsInitNone; |