Fixed zero-length sortset causing crash in MP4 output
This commit is contained in:
parent
3c09b085c0
commit
4cce8baf9b
1 changed files with 1 additions and 1 deletions
|
@ -1350,7 +1350,7 @@ namespace Mist{
|
||||||
|
|
||||||
// The remainder of this function handles non-live situations
|
// The remainder of this function handles non-live situations
|
||||||
if (M.getLive()){
|
if (M.getLive()){
|
||||||
sortSet.erase(sortSet.begin());
|
if (sortSet.size()){sortSet.erase(sortSet.begin());}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue