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/ICWrap.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/ICWrap.c')
-rw-r--r-- | nx-X11/lib/X11/ICWrap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/lib/X11/ICWrap.c b/nx-X11/lib/X11/ICWrap.c index 8584e36a7..dadc8f541 100644 --- a/nx-X11/lib/X11/ICWrap.c +++ b/nx-X11/lib/X11/ICWrap.c @@ -128,7 +128,7 @@ _XIMVaToNestedList(va_list var, int max_count, XIMArg **args_return) return; } - args = Xmalloc((unsigned)(max_count + 1) * sizeof(XIMArg)); + args = Xmalloc(((unsigned)max_count + 1) * sizeof(XIMArg)); *args_return = args; if (!args) return; |