Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ptp-dev] Event messages not being freed by proxy

Shouldn't

void proxy_process_msgs( List * )
{
   	while ((m = (proxy_msg *)RemoveFirst(msg_list)) != NULL) {
		callback(m, data);
		free_proxy_msg(m);
	}
}

free all messages all the callback?

Feiyi

Dave Wootton wrote:
I ran valgrind (3.2.3) on my proxy looking for problems with memory leaks. When I do this, it looks like the event messages I create and which get sent to the front end are not being freed. One example is the attribute definition events I'm sending, which look like about 500k bytes allocated and never freed. After I create these messages, I put them on the event list to be sent to the front end, and assume I'm done with them once I've enqueued them, since I have no way to get control back after the message has been sent. Is there any way I could be doing something resulting in these messages not being freed?
Dave
_______________________________________________
ptp-dev mailing list
ptp-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/ptp-dev



Back to the top