[audio,camera,codec] Use absolute path to avoid security issue 31/233331/1 accepted/tizen_6.0_unified_hotfix tizen_6.0_hotfix accepted/tizen/6.0/unified/20201030.114539 accepted/tizen/6.0/unified/hotfix/20201103.003227 accepted/tizen/unified/20200605.022951 submit/tizen/20200604.100526 submit/tizen_6.0/20201029.205104 submit/tizen_6.0_hotfix/20201102.192504 submit/tizen_6.0_hotfix/20201103.114804 tizen_6.0.m2_release
authorJeongmo Yang <jm80.yang@samsung.com>
Thu, 14 May 2020 02:48:24 +0000 (11:48 +0900)
committerJeongmo Yang <jm80.yang@samsung.com>
Thu, 14 May 2020 02:51:39 +0000 (11:51 +0900)
[Version] 0.0.30
[Profile] Common
[Issue Type] Improvement

Change-Id: I7af6aabe2ac24cd2504cd4a61869c58507a749ce
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
packaging/mm-hal-interface.spec
src/audio/audio_hal_interface.c
src/camera/camera_hal_interface.c
src/codec/codec_hal_interface.c

index 98a442d..568504a 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       mm-hal-interface
 Summary:    Multimedia HAL Interface
-Version:    0.0.29
+Version:    0.0.30
 Release:    0
 Group:      Multimedia/Development
 License:    Apache-2.0
index 0c4c3f1..c2eb49b 100644 (file)
@@ -35,7 +35,7 @@
 #endif /* LOG_TAG */
 #define LOG_TAG "AUDIO_HAL_INTF"
 
-#define LIB_TIZEN_AUDIO "libtizen-audio.so"
+#define LIB_TIZEN_AUDIO PATH_LIBDIR"/libtizen-audio.so"
 
 struct _audio_hal_interface {
        void *dl_handle;
index decafe1..57f8af1 100644 (file)
@@ -34,7 +34,7 @@
 #endif /* LOG_TAG */
 #define LOG_TAG "CAMERA_HAL_INTF"
 
-#define LIB_TIZEN_CAMERA "libtizen-camera.so"
+#define LIB_TIZEN_CAMERA PATH_LIBDIR"/libtizen-camera.so"
 
 struct _camera_hal_interface {
        void *dl_handle;
index a247c73..e0051d1 100644 (file)
@@ -34,5 +34,5 @@
 #endif /* LOG_TAG */
 #define LOG_TAG "CODEC_HAL_INTF"
 
-#define LIB_TIZEN_CODEC "libtizen-codec.so"
+#define LIB_TIZEN_CODEC PATH_LIBDIR"/libtizen-codec.so"