Change malloc to zmalloc for libust
[ust.git] / libust / tracectl.c
index 8d57b8fe9324be657629fd3994668437fc86d1dd..e64b26f7cf85dc6ad2718d508f0e95d2cd226c8d 100644 (file)
@@ -675,9 +675,9 @@ static int do_cmd_get_subbuffer(const char *recvbuf, struct ustcomm_source *src)
 
                        found = 1;
 
-                       bc = (struct blocked_consumer *) malloc(sizeof(struct blocked_consumer));
+                       bc = (struct blocked_consumer *) zmalloc(sizeof(struct blocked_consumer));
                        if(bc == NULL) {
-                               ERR("malloc returned NULL");
+                               ERR("zmalloc returned NULL");
                                goto unlock_traces;
                        }
                        bc->fd_consumer = src->fd;
This page took 0.022243 seconds and 4 git commands to generate.