It is possible for topic->name to be NULL, this causes the allocation
reference to not be logged. Use the name variable instead which has
been verified to be a non-empty.
Change-Id: I3d0031d03c8356e4808f00cdf2d5428712575883
}
proxy = ao2_t_weakproxy_alloc(
- sizeof(*proxy) + strlen(name) + 1 + strlen(detail) + 1, NULL, topic->name);
+ sizeof(*proxy) + strlen(name) + 1 + strlen(detail) + 1, NULL, name);
if (!proxy) {
ao2_unlock(topic_all);