cliptest: Use xmalloc in cliptest

dev
Kristian Høgsberg 12 years ago
parent 46118f8197
commit 9a6c48d0fd
  1. 4
      clients/cliptest.c

@ -791,9 +791,7 @@ cliptest_create(struct display *display)
{
struct cliptest *cliptest;
cliptest = malloc(sizeof *cliptest);
if (cliptest == NULL)
return cliptest;
cliptest = xmalloc(sizeof *cliptest);
memset(cliptest, 0, sizeof *cliptest);
cliptest->surface.geometry = &cliptest->geometry;

Loading…
Cancel
Save