Skip to content
Snippets Groups Projects
Commit dccda0e1 authored by Johannes Kauffmann's avatar Johannes Kauffmann Committed by Jean-Baptiste Kempf
Browse files

demux: dash: add missing nothrow

parent 2a865dc2
No related branches found
No related tags found
1 merge request!3596demux: dash: add missing nothrow
Pipeline #338526 passed with stages
in 32 minutes and 51 seconds
......@@ -292,7 +292,7 @@ void IsoffMainParser::parseAdaptationSets (MPD *mpd, Node *periodNode, BaseP
for(it = adaptationSets.begin(); it != adaptationSets.end(); ++it)
{
AdaptationSet *adaptationSet = new AdaptationSet(period);
AdaptationSet *adaptationSet = new (std::nothrow) AdaptationSet(period);
if(!adaptationSet)
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment