From 3cfffc3927849f95881193cbe1c957103add4f52 Mon Sep 17 00:00:00 2001 From: Dongjin Choi Date: Thu, 16 May 2013 18:17:20 +0900 Subject: [PATCH] Update change log and spec for wrt-plugins-tizen_0.4.32-1 [model] REDWOOD [binary_type] PDA [customer] OPEN [Issue#] N/A [Problem] getAppSharedURI() API returns wrong path [Cause] package is added twice to path [Solution] remove one package from the path [team] WebAPI [request] N/A [horizontal_expansion] N/A --- packaging/wrt-plugins-tizen.spec | 2 +- src/Application/ApplicationManager.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packaging/wrt-plugins-tizen.spec b/packaging/wrt-plugins-tizen.spec index 87c8937..d9810b6 100755 --- a/packaging/wrt-plugins-tizen.spec +++ b/packaging/wrt-plugins-tizen.spec @@ -1,7 +1,7 @@ Name: wrt-plugins-tizen Summary: JavaScript plugins for WebRuntime Version: 0.4.32 -Release: 0 +Release: 1 Group: Development/Libraries License: Apache License, Version 2.0 Source0: %{name}-%{version}.tar.gz diff --git a/src/Application/ApplicationManager.cpp b/src/Application/ApplicationManager.cpp index 41b0d65..98bb405 100644 --- a/src/Application/ApplicationManager.cpp +++ b/src/Application/ApplicationManager.cpp @@ -1509,8 +1509,7 @@ void ApplicationManager::OnRequestReceived(const EventApplicationGetAppSharedURI return; } - std::string sharedURI = TIZENAPIS_APP_FILE_SCHEME + std::string(root_path) + TIZENAPIS_APP_SLASH + - std::string(pkg_name) + TIZENAPIS_APP_SLASH + TIZENAPIS_APP_SHARED; + std::string sharedURI = TIZENAPIS_APP_FILE_SCHEME + std::string(root_path) + TIZENAPIS_APP_SLASH + TIZENAPIS_APP_SHARED; free(pkg_name); pkgmgrinfo_pkginfo_destroy_pkginfo(pkginfo_h); -- 2.7.4