After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 623802 - camerabin: Bin based viewfinder sink support is broken
camerabin: Bin based viewfinder sink support is broken
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other Linux
: Normal major
: 0.10.20
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2010-07-08 01:43 UTC by Dmytro Poplavskiy
Modified: 2010-07-08 02:33 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Dmytro Poplavskiy 2010-07-08 01:43:16 UTC
camerabin_setup_view_elements contains

for (child = children; child != NULL; child = g_list_next (children)) {

should be

for (child = children; child != NULL; child = g_list_next (child)) {
Comment 1 Thiago Sousa Santos 2010-07-08 02:33:23 UTC
Thianks for reporting it. It is now fixed.

commit 44e3d29ec409498fbea1c37a3d53394325b32b60
Author: Thiago Santos <thiago.sousa.santos@collabora.co.uk>
Date:   Wed Jul 7 23:06:43 2010 -0300

    camerabin: Fix viewfiner-sink property for bins
    
    Correctly iterate viewfinder-sink children when
    it is a bin.
    
    Fixes #623802