Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
68e3f348
Commit
68e3f348
authored
Feb 22, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* livedotcom.cpp: bug fix. (a bad memory allocation).
parent
08ae7414
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+2
-2
No files found.
modules/demux/livedotcom.cpp
View file @
68e3f348
...
...
@@ -2,7 +2,7 @@
* live.cpp : live.com support.
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: livedotcom.cpp,v 1.1
4 2004/01/25 20:05:28 hartman
Exp $
* $Id: livedotcom.cpp,v 1.1
5 2004/02/22 16:01:42 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -548,7 +548,7 @@ static int DemuxOpen ( vlc_object_t *p_this )
if
(
(
p_extra
=
parseStreamMuxConfigStr
(
sub
->
fmtp_config
(),
i_extra
)
)
)
{
tk
->
fmt
.
i_extra
=
i_extra
;
tk
->
fmt
.
p_extra
=
malloc
(
sizeof
(
i_extra
)
);
tk
->
fmt
.
p_extra
=
malloc
(
i_extra
);
memcpy
(
tk
->
fmt
.
p_extra
,
p_extra
,
i_extra
);
delete
[]
p_extra
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment