Fixed a bug where pruning the transcoder data cache could get stuck in

an infinite loop.
This commit is contained in:
casey langen 2017-05-29 07:33:04 -07:00
parent a42532136f
commit 133f69e93b

View File

@ -96,6 +96,7 @@ void Transcoder::PruneTranscodeCache(Context& context) {
if (remove(p, ec)) {
--extra;
}
++it;
}
}