X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=libust%2Fmarker.c;h=3351726aaa17954e2dcbb4169836032c4c326060;hb=9d20cbf2e908c3bc8a1950e48c2d630f2e0d0794;hp=19467d19bba9272bc3af2d1e37507d25f2505685;hpb=eddb0f66ac5c9175433828c3f72211115474ddb7;p=lttng-ust.git diff --git a/libust/marker.c b/libust/marker.c index 19467d19..3351726a 100644 --- a/libust/marker.c +++ b/libust/marker.c @@ -428,10 +428,10 @@ static struct marker_entry *add_marker(const char *channel, const char *name, } } /* - * Using malloc here to allocate a variable length element. Could + * Using zmalloc here to allocate a variable length element. Could * cause some memory fragmentation if overused. */ - e = malloc(sizeof(struct marker_entry) + e = zmalloc(sizeof(struct marker_entry) + channel_len + name_len + format_len); if (!e) return ERR_PTR(-ENOMEM); @@ -1363,7 +1363,7 @@ int marker_register_lib(struct marker *markers_start, int markers_count) { struct lib *pl; - pl = (struct lib *) malloc(sizeof(struct lib)); + pl = (struct lib *) zmalloc(sizeof(struct lib)); pl->markers_start = markers_start; pl->markers_count = markers_count;