summaryrefslogtreecommitdiffstats
path: root/src/H5E.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5E.c')
-rw-r--r--src/H5E.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5E.c b/src/H5E.c
index 855996a..e1d2b18 100644
--- a/src/H5E.c
+++ b/src/H5E.c
@@ -1185,6 +1185,10 @@ H5Eclose_stack(hid_t stack_id)
H5TRACE1("e","i",stack_id);
if(H5E_DEFAULT != stack_id) {
+ /* Check arguments */
+ if (H5I_ERROR_STACK != H5I_get_type(stack_id))
+ HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a error stack ID")
+
/*
* Decrement the counter on the error stack. It will be freed if the count
* reaches zero.