exif crash issue without prefix data 98/232598/3 submit/tizen/20200512.030625
authorHyuntae Kim <ht1211.kim@samsung.com>
Wed, 6 May 2020 23:46:01 +0000 (08:46 +0900)
committerHyuntae Kim <ht1211.kim@samsung.com>
Tue, 12 May 2020 02:08:32 +0000 (11:08 +0900)
Change-Id: I52f1f014122da182f3f8021ab9e68412a55b7432

packaging/libmm-camcorder.spec
src/mm_camcorder_exifinfo.c

index 408e710..cb10428 100644 (file)
@@ -1,6 +1,6 @@
 Name:       libmm-camcorder
 Summary:    Camera and recorder library
-Version:    0.10.199
+Version:    0.10.200
 Release:    1
 Group:      Multimedia/Libraries
 License:    Apache-2.0
index 46e7cc5..04cfdc5 100644 (file)
@@ -326,20 +326,11 @@ void
 mm_exif_destory_exif_info(mm_exif_info_t *info)
 {
        /* _mmcam_dbg_log( ""); */
-
-#if MM_EXIFINFO_USE_BINARY_EXIFDATA
        if (info) {
                if (info->data)
                        free(info->data);
                free(info);
        }
-#else
-       if (info) {
-               if (info->data)
-                       exif_mem_free(info->data);
-               free(info);
-       }
-#endif
 }