diff options
author | junsuk77.oh <junsuk77.oh@samsung.com> | 2013-04-05 14:44:08 +0900 |
---|---|---|
committer | junsuk77.oh <junsuk77.oh@samsung.com> | 2013-04-05 14:44:08 +0900 |
commit | d896b1552e8fc9b676e0408c887900b6024e60d5 (patch) | |
tree | 62b7b0cf67a9f6e7b26e030afe7ff27b87ba9fe2 | |
parent | 56f3c3213214f16c1bbb571d23419c944b4db278 (diff) | |
download | ail-tizen_2.1.tar.gz ail-tizen_2.1.tar.bz2 ail-tizen_2.1.zip |
appinfo db close when ail_destroy_appinfo is calledsubmit/tizen_2.1/20130424.230726accepted/tizen_2.1/20130425.0355212.1b_releasetizen_2.1
Change-Id: I3b07f112783b49050c7c73d5cec42f5d70bf8649
Signed-off-by: junsuk77.oh <junsuk77.oh@samsung.com>
-rwxr-xr-x | packaging/ail.spec | 3 | ||||
-rwxr-xr-x | src/ail_filter.c | 1 | ||||
-rwxr-xr-x | src/ail_package.c | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/packaging/ail.spec b/packaging/ail.spec index e633635..b28d29e 100755 --- a/packaging/ail.spec +++ b/packaging/ail.spec @@ -1,7 +1,7 @@ #sbs-git:slp/pkgs/a/ail ail 0.2.22 29ac1f2c98453cad647cca6a92abc7da3dbb047b Name: ail Summary: Application Information Library -Version: 0.2.67 +Version: 0.2.68 Release: 1 Group: System/Libraries License: Apache License, Version 2.0 @@ -16,7 +16,6 @@ BuildRequires: pkgconfig(vconf) BuildRequires: pkgconfig(db-util) BuildRequires: pkgconfig(xdgmime) - %description Application Information Library diff --git a/src/ail_filter.c b/src/ail_filter.c index 2451996..3c4bb2f 100755 --- a/src/ail_filter.c +++ b/src/ail_filter.c @@ -86,6 +86,7 @@ EXPORT_API ail_error_e ail_filter_destroy(ail_filter_h filter) } free(filter); + db_close(); return AIL_ERROR_OK; } diff --git a/src/ail_package.c b/src/ail_package.c index 250e371..b12aa84 100755 --- a/src/ail_package.c +++ b/src/ail_package.c @@ -250,6 +250,7 @@ EXPORT_API ail_error_e ail_destroy_appinfo(ail_appinfo_h ai) free(ai->values); free(ai); + db_close(); return AIL_ERROR_OK; } |