Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
aacb2a82
Commit
aacb2a82
authored
Nov 25, 2013
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix read of unitialized variable (cid #1125395)
Even if should not have any impact during execution.
parent
2ca8c9db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
modules/mux/ogg.c
modules/mux/ogg.c
+1
-2
No files found.
modules/mux/ogg.c
View file @
aacb2a82
...
...
@@ -692,8 +692,7 @@ static block_t *OggStreamPageOut( sout_mux_t *p_mux,
static
void
OggGetSkeletonIndex
(
uint8_t
**
pp_buffer
,
long
*
pi_size
,
ogg_stream_t
*
p_stream
)
{
uint8_t
*
p_buffer
=
*
pp_buffer
;
p_buffer
=
calloc
(
INDEX_BASE_SIZE
+
p_stream
->
skeleton
.
i_index_size
,
sizeof
(
uint8_t
)
);
uint8_t
*
p_buffer
=
calloc
(
INDEX_BASE_SIZE
+
p_stream
->
skeleton
.
i_index_size
,
sizeof
(
uint8_t
)
);
if
(
!
p_buffer
)
return
;
*
pp_buffer
=
p_buffer
;
...
...
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