summaryrefslogtreecommitdiff
path: root/src/emacs-module.c
diff options
context:
space:
mode:
authorValentin Gatien-Baron <vgatien-baron@janestreet.com>2017-07-10 00:08:52 +0200
committerPhilipp Stephani <phst@google.com>2017-07-10 00:15:29 +0200
commit22af69906cca871fdb893e06d6f10dbbab4518e6 (patch)
tree34be96408523c8e7d96398e285da8a0df71f0ed0 /src/emacs-module.c
parentbb2ea81bc569bdc51e1c9af1c503a22fb95e4384 (diff)
downloademacs-22af69906cca871fdb893e06d6f10dbbab4518e6.tar.gz
Fix bug in module_free_global_ref (Bug#27587)
* src/emacs-module.c (module_free_global_ref): Actually remove entry from hash table. Copyright-paperwork-exempt: yes
Diffstat (limited to 'src/emacs-module.c')
-rw-r--r--src/emacs-module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c
index c5e56b1344c..ba996982604 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -328,7 +328,7 @@ module_free_global_ref (emacs_env *env, emacs_value ref)
set_hash_value_slot (h, i, value);
}
else
- hash_remove_from_table (h, value);
+ hash_remove_from_table (h, obj);
}
if (module_assertions)