Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
dccda0e1
Commit
dccda0e1
authored
1 year ago
by
Johannes Kauffmann
Committed by
Jean-Baptiste Kempf
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
demux: dash: add missing nothrow
parent
2a865dc2
No related branches found
Branches containing commit
No related tags found
1 merge request
!3596
demux: dash: add missing nothrow
Pipeline
#338526
passed with stages
in 32 minutes and 51 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/demux/dash/mpd/IsoffMainParser.cpp
+1
-1
1 addition, 1 deletion
modules/demux/dash/mpd/IsoffMainParser.cpp
with
1 addition
and
1 deletion
modules/demux/dash/mpd/IsoffMainParser.cpp
+
1
−
1
View file @
dccda0e1
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Name Surname
@anrxc
mentioned in issue
#28461 (closed)
·
1 year ago
mentioned in issue
#28461 (closed)
mentioned in issue #28461
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment