On 5/25/22 12:35, Dr. David Alan Gilbert wrote:
+ return filter; + } + + /* "info stats" can only query either one or all the providers. */ + StatsRequest *request = g_new0(StatsRequest, 1); + request->provider = provider; + StatsRequestList *request_list = g_new0(StatsRequestList, 1);Why that g_new0 there? isn't that request_list = NULL and let the PREPEND below do the alloc?
Yes, it is fixed in patch 8. Paolo