replace XMALLOC with XNEW
[deliverable/binutils-gdb.git] / gdb / ser-mingw.c
index 7247f50e100b2cdaf379337f63c98b43f1f8c10c..db049991e87c1bd4f8fca770cbd9c50415150677 100644 (file)
@@ -788,7 +788,7 @@ struct pipe_state
 static struct pipe_state *
 make_pipe_state (void)
 {
-  struct pipe_state *ps = XMALLOC (struct pipe_state);
+  struct pipe_state *ps = XNEW (struct pipe_state);
 
   memset (ps, 0, sizeof (*ps));
   ps->wait.read_event = INVALID_HANDLE_VALUE;
This page took 0.022821 seconds and 4 git commands to generate.