modules/demux/ts.c: replace malloc+memset with calloc
Replace the combination of malloc() and memset() on the same pointer by one instance of calloc(), which does both.
Showing
Please register or sign in to comment
Replace the combination of malloc() and memset() on the same pointer by one instance of calloc(), which does both.