libtriple: fix memory allocation size

This commit is contained in:
Stefan Seyfried
2013-11-09 18:00:08 +01:00
parent 4c74b822ca
commit 8563837c8b

View File

@@ -89,7 +89,7 @@ cDemux::cDemux(int n)
else else
num = n; num = n;
fd = -1; fd = -1;
pdata = calloc(1, sizeof(pdata)); pdata = calloc(1, sizeof(dmx_pdata));
P->measure = false; P->measure = false;
P->last_measure = 0; P->last_measure = 0;
P->last_data = 0; P->last_data = 0;