Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GStreamer
gstreamer
Commits
95575427
Commit
95575427
authored
Apr 03, 2009
by
Edward Hervey
🤘
Browse files
gstregistrybinary: remove variable only used for a check.
that variable isn't used anywhere else within that block.
parent
6577af36
Changes
1
Show whitespace changes
Inline
Side-by-side
gst/gstregistrybinary.c
View file @
95575427
...
@@ -731,10 +731,9 @@ gst_registry_binary_write_cache (GstRegistry * registry, const char *location)
...
@@ -731,10 +731,9 @@ gst_registry_binary_write_cache (GstRegistry * registry, const char *location)
continue
;
continue
;
if
(
plugin
->
flags
&
GST_PLUGIN_FLAG_CACHED
)
{
if
(
plugin
->
flags
&
GST_PLUGIN_FLAG_CACHED
)
{
int
ret
;
struct
stat
statbuf
;
struct
stat
statbuf
;
if
(
(
ret
=
g_stat
(
plugin
->
filename
,
&
statbuf
)
)
<
0
||
if
(
g_stat
(
plugin
->
filename
,
&
statbuf
)
<
0
||
plugin
->
file_mtime
!=
statbuf
.
st_mtime
||
plugin
->
file_mtime
!=
statbuf
.
st_mtime
||
plugin
->
file_size
!=
statbuf
.
st_size
)
plugin
->
file_size
!=
statbuf
.
st_size
)
continue
;
continue
;
...
...
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