1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00

Fix a nasty deadlock in statistics.

This commit is contained in:
Antti Seppälä 2007-10-08 18:31:44 +00:00
parent 80651984f6
commit 0bc8b27271

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: statistics.c,v 1.13 2007/10/08 16:24:48 rahrenbe Exp $ * $Id: statistics.c,v 1.14 2007/10/08 18:31:44 ajhseppa Exp $
*/ */
#include <limits.h> #include <limits.h>
@ -138,6 +138,7 @@ void cIptvDeviceStatistics::AddStatistic(long Bytes, u_short pid, long payload)
mostActivePids[i].DataAmount += payload; mostActivePids[i].DataAmount += payload;
// Now re-sort the array and quit // Now re-sort the array and quit
qsort(&mostActivePids, numberOfElements, sizeof(pidStruct), SortPids); qsort(&mostActivePids, numberOfElements, sizeof(pidStruct), SortPids);
mutex.Unlock();
return; return;
} }
} }