diff options
author | Jeongmo Yang <jm80.yang@samsung.com> | 2013-07-09 10:19:38 +0900 |
---|---|---|
committer | Jeongmo Yang <jm80.yang@samsung.com> | 2013-07-09 10:19:38 +0900 |
commit | 5e9a84db7941284c99e86f70cfe43620856747fd (patch) | |
tree | 179e790dc2e6f61f8fcecc6fa7eb0ef2e78d4bfc | |
parent | 2f7ba0665e2945a0cc2b4c3f7c1adad590047038 (diff) | |
download | libmm-camcorder-tizen_2.2.tar.gz libmm-camcorder-tizen_2.2.tar.bz2 libmm-camcorder-tizen_2.2.zip |
Remove error initialization code in bus sync cb to avoid missing errorsubmit/tizen_2.2/20130714.1509252.2_release2.2.1_releasetizen_2.2
-rw-r--r-- | packaging/libmm-camcorder.spec | 2 | ||||
-rw-r--r-- | src/mm_camcorder_internal.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/packaging/libmm-camcorder.spec b/packaging/libmm-camcorder.spec index 6860f27..5b7904c 100644 --- a/packaging/libmm-camcorder.spec +++ b/packaging/libmm-camcorder.spec @@ -1,6 +1,6 @@ Name: libmm-camcorder Summary: Camera and recorder library -Version: 0.7.15 +Version: 0.7.16 Release: 0 Group: libs License: Apache-2.0 diff --git a/src/mm_camcorder_internal.c b/src/mm_camcorder_internal.c index e5eb420..ac79560 100644 --- a/src/mm_camcorder_internal.c +++ b/src/mm_camcorder_internal.c @@ -2712,8 +2712,6 @@ GstBusSyncReply _mmcamcorder_pipeline_bus_sync_callback(GstBus *bus, GstMessage sc = MMF_CAMCORDER_SUBCONTEXT(hcamcorder); mmf_return_val_if_fail(sc, GST_BUS_PASS); - sc->error_code = MM_ERROR_NONE; - if (GST_MESSAGE_TYPE(message) == GST_MESSAGE_ERROR) { /* parse error message */ gst_message_parse_error(message, &err, &debug_info); |