Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
035aead2
Commit
035aead2
authored
May 14, 2010
by
Tim-Philipp Müller
Browse files
jpegenc: fix two leaks
Don't leak othercaps or jpegenc ref.
parent
dc2662e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
ext/jpeg/gstjpegenc.c
View file @
035aead2
...
...
@@ -342,8 +342,10 @@ gst_jpegenc_getcaps (GstPad * pad)
othercaps
=
gst_pad_get_allowed_caps
(
jpegenc
->
srcpad
);
if
(
othercaps
==
NULL
||
gst_caps_is_empty
(
othercaps
)
||
gst_caps_is_any
(
othercaps
))
return
gst_caps_copy
(
gst_pad_get_pad_template_caps
(
pad
));
gst_caps_is_empty
(
othercaps
)
||
gst_caps_is_any
(
othercaps
))
{
caps
=
gst_caps_copy
(
gst_pad_get_pad_template_caps
(
pad
));
goto
done
;
}
caps
=
gst_caps_new_empty
();
templ
=
gst_pad_get_pad_template_caps
(
pad
);
...
...
@@ -365,6 +367,10 @@ gst_jpegenc_getcaps (GstPad * pad)
gst_caps_merge_structure
(
caps
,
structure
);
}
}
done:
gst_caps_replace
(
&
othercaps
,
NULL
);
gst_object_unref
(
jpegenc
);
return
caps
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment