diff options
Diffstat (limited to 'nx-X11/lib/src/GetMoEv.c')
-rw-r--r-- | nx-X11/lib/src/GetMoEv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nx-X11/lib/src/GetMoEv.c b/nx-X11/lib/src/GetMoEv.c index ad9c77277..d723f3788 100644 --- a/nx-X11/lib/src/GetMoEv.c +++ b/nx-X11/lib/src/GetMoEv.c @@ -28,6 +28,7 @@ in this Software without prior written authorization from The Open Group. #include <config.h> #endif #include "Xlibint.h" +#include "reallocarray.h" #include <limits.h> XTimeCoord *XGetMotionEvents( @@ -53,7 +54,7 @@ XTimeCoord *XGetMotionEvents( } if (rep.nEvents && (rep.nEvents < (INT_MAX / sizeof(XTimeCoord)))) - tc = Xmalloc(rep.nEvents * sizeof(XTimeCoord)); + tc = Xmallocarray(rep.nEvents, sizeof(XTimeCoord)); if (tc == NULL) { /* server returned either no events or a bad event count */ *nEvents = 0; |