diff options
author | Jaeho Lee <jaeho81.lee@samsung.com> | 2013-01-11 18:13:27 +0900 |
---|---|---|
committer | Jaeho Lee <jaeho81.lee@samsung.com> | 2013-01-11 18:13:27 +0900 |
commit | 5be851c871c4918525ef2a83a913a73bcf2e1c55 (patch) | |
tree | 11f4711b8ce7ce3a4bf7de42ee8c1c74d8e54000 | |
parent | a90cb5046cc0fbccee32767a19d3bb969cbfc659 (diff) | |
download | aul-1-5be851c871c4918525ef2a83a913a73bcf2e1c55.tar.gz aul-1-5be851c871c4918525ef2a83a913a73bcf2e1c55.tar.bz2 aul-1-5be851c871c4918525ef2a83a913a73bcf2e1c55.zip |
fixed double free bug
Signed-off-by: Jaeho Lee <jaeho81.lee@samsung.com>
-rwxr-xr-x | am_daemon/amd_main.c | 2 | ||||
-rw-r--r-- | packaging/aul.spec | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/am_daemon/amd_main.c b/am_daemon/amd_main.c index 60ed7083..212436d9 100755 --- a/am_daemon/amd_main.c +++ b/am_daemon/amd_main.c @@ -196,7 +196,7 @@ END: _E("ail_destroy_rs failed"); free(item); - return ail_ret == AIL_ERROR_OK ? true : false; + return false; } static void __vconf_cb(keynode_t *key, void *data) diff --git a/packaging/aul.spec b/packaging/aul.spec index 71addabc..86d6fe03 100644 --- a/packaging/aul.spec +++ b/packaging/aul.spec @@ -1,6 +1,6 @@ Name: aul Summary: App utility library -Version: 0.0.229 +Version: 0.0.230 Release: 1 Group: System/Libraries License: Apache License, Version 2.0 |