diff options
author | Sverker Eriksson <[email protected]> | 2016-12-01 19:54:22 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-12-19 19:17:35 +0100 |
commit | 9ffe2d285943b661317cee2b00d779a2e75a3374 (patch) | |
tree | 262bb665f11db9dac766a9a816818f7452edbaee /erts/emulator/test/nif_SUITE_data | |
parent | 0763a36867a702e3075b682973a079e0390144ce (diff) | |
download | otp-9ffe2d285943b661317cee2b00d779a2e75a3374.tar.gz otp-9ffe2d285943b661317cee2b00d779a2e75a3374.tar.bz2 otp-9ffe2d285943b661317cee2b00d779a2e75a3374.zip |
erts: Add testing + some minor fixes
Diffstat (limited to 'erts/emulator/test/nif_SUITE_data')
-rw-r--r-- | erts/emulator/test/nif_SUITE_data/nif_SUITE.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/test/nif_SUITE_data/nif_SUITE.c b/erts/emulator/test/nif_SUITE_data/nif_SUITE.c index a4915b13c4..f6ccd3e6ba 100644 --- a/erts/emulator/test/nif_SUITE_data/nif_SUITE.c +++ b/erts/emulator/test/nif_SUITE_data/nif_SUITE.c @@ -2176,6 +2176,7 @@ static ERL_NIF_TERM is_closed_nif(ErlNifEnv* env, int argc, const ERL_NIF_TERM a static void fd_resource_dtor(ErlNifEnv* env, void* obj) { struct fd_resource* rsrc = (struct fd_resource*)obj; + resource_dtor(env, obj); if (rsrc->fd >= 0) close(rsrc->fd); } |