diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2012-12-04 14:49:49 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2012-12-04 14:49:49 +0000 |
commit | 5980697b20d886e7c1921980ec1aab4579719f35 (patch) | |
tree | d4ad6c6d5e469d0969f522900ee3a155610fdd26 /src/bin/e_exec.c | |
parent | 4eeeffb4b92b6fe490a621d23458b724e5d27856 (diff) | |
download | enlightenment-5980697b20d886e7c1921980ec1aab4579719f35.tar.gz enlightenment-5980697b20d886e7c1921980ec1aab4579719f35.tar.xz enlightenment-5980697b20d886e7c1921980ec1aab4579719f35.zip |
delete from hash by key
SVN revision: 80170
Diffstat (limited to 'src/bin/e_exec.c')
-rw-r--r-- | src/bin/e_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_exec.c b/src/bin/e_exec.c index 4fe262312..d479cb5c2 100644 --- a/src/bin/e_exec.c +++ b/src/bin/e_exec.c @@ -551,7 +551,7 @@ _e_exec_instance_free(E_Exec_Instance *inst) if (instances) eina_hash_modify(e_exec_instances, inst->key, instances); else - eina_hash_del(e_exec_instances, inst->key, NULL); + eina_hash_del_by_key(e_exec_instances, inst->key); } eina_stringshare_del(inst->key); } |