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
d5846837
Commit
d5846837
authored
Aug 31, 2007
by
Jean-Paul Saman
Committed by
Jean-Paul Saman
Mar 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sanity checking.
parent
6215934b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/misc/block.c
src/misc/block.c
+3
-1
No files found.
src/misc/block.c
View file @
d5846837
...
...
@@ -141,6 +141,7 @@ block_t *block_Realloc( block_t *p_block, int i_prebody, int i_body )
static
void
BlockRelease
(
block_t
*
p_block
)
{
free
(
p_block
);
p_block
=
NULL
;
}
...
...
@@ -152,6 +153,7 @@ block_fifo_t *__block_FifoNew( vlc_object_t *p_obj )
block_fifo_t
*
p_fifo
;
p_fifo
=
malloc
(
sizeof
(
block_fifo_t
)
);
if
(
!
p_fifo
)
return
NULL
;
vlc_mutex_init
(
p_obj
,
&
p_fifo
->
lock
);
vlc_cond_init
(
p_obj
,
&
p_fifo
->
wait
);
p_fifo
->
i_depth
=
p_fifo
->
i_size
=
0
;
...
...
@@ -167,6 +169,7 @@ void block_FifoRelease( block_fifo_t *p_fifo )
vlc_cond_destroy
(
&
p_fifo
->
wait
);
vlc_mutex_destroy
(
&
p_fifo
->
lock
);
free
(
p_fifo
);
p_fifo
=
NULL
;
}
void
block_FifoEmpty
(
block_fifo_t
*
p_fifo
)
...
...
@@ -263,4 +266,3 @@ block_t *block_FifoShow( block_fifo_t *p_fifo )
return
(
b
);
}
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