Re: [Live-devel] [live-devel] memory leak using scheduledelayedtask

2020-05-11 Thread Ross Finlayson
Once again, you’re going to have to figure this out yourself. In particular, you should check: - What happens if you use the unmodified “LIVE555 Proxy Server” code? - What happens if your application contains only the code that you’ve shown below (without *any* “LIVE555 Proxy Serv

[Live-devel] [live-devel] memory leak using scheduledelayedtask

2020-05-11 Thread Siddhant Agarwal
Hi, I am using scheduleDelayedTask to execute a function dummytask repeatedly. Code: void dummytask() { . . . env->taskScheduler().scheduleDelayedTask(uSecsToDelay, (TaskFunc*)dummyTask, NULL); } int main() { . . . dummytask(); env->taskScheduler().doEve