You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by bp...@apache.org on 2016/01/15 15:07:23 UTC

celix git commit: CELIX-77: revert hashMap key-free

Repository: celix
Updated Branches:
  refs/heads/develop 141f622a3 -> 4e96cf300


CELIX-77: revert hashMap key-free


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/4e96cf30
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/4e96cf30
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/4e96cf30

Branch: refs/heads/develop
Commit: 4e96cf300d7939569468c6f781f8b8ff24883094
Parents: 141f622
Author: Bjoern Petri <bp...@apache.org>
Authored: Fri Jan 15 15:06:53 2016 +0100
Committer: Bjoern Petri <bp...@apache.org>
Committed: Fri Jan 15 15:06:53 2016 +0100

----------------------------------------------------------------------
 config_admin/service/private/src/configuration_store.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/4e96cf30/config_admin/service/private/src/configuration_store.c
----------------------------------------------------------------------
diff --git a/config_admin/service/private/src/configuration_store.c b/config_admin/service/private/src/configuration_store.c
index 19a416d..d4bb831 100644
--- a/config_admin/service/private/src/configuration_store.c
+++ b/config_admin/service/private/src/configuration_store.c
@@ -109,7 +109,7 @@ celix_status_t configurationStore_create(bundle_context_pt context, configuratio
 
 celix_status_t configurationStore_destroy(configuration_store_pt store) {
     celixThreadMutex_destroy(&store->mutex);
-    hashMap_destroy(store->configurations, true, true);
+    hashMap_destroy(store->configurations, false, true);
     free(store);
 
     return CELIX_SUCCESS;