aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/io.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2013-12-13 16:17:30 +0100
committerSverker Eriksson <[email protected]>2013-12-13 16:17:30 +0100
commitd7b9addd8637f67ba670312033acf1c0695f5af6 (patch)
tree4c2c6599670e2cdb85bc3fbbf2920f1435824e11 /erts/emulator/beam/io.c
parent02f75aa7d187f1e2462f7b8793446b1f9be7c612 (diff)
downloadotp-d7b9addd8637f67ba670312033acf1c0695f5af6.tar.gz
otp-d7b9addd8637f67ba670312033acf1c0695f5af6.tar.bz2
otp-d7b9addd8637f67ba670312033acf1c0695f5af6.zip
erts: Refactor remove erts_sys_dll_open2
Diffstat (limited to 'erts/emulator/beam/io.c')
-rw-r--r--erts/emulator/beam/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/io.c b/erts/emulator/beam/io.c
index d4623c0450..49af86b36a 100644
--- a/erts/emulator/beam/io.c
+++ b/erts/emulator/beam/io.c
@@ -7061,7 +7061,7 @@ void *driver_dl_open(char * path)
int res;
int *last_error_p = erts_smp_tsd_get(driver_list_last_error_key);
int locked = maybe_lock_driver_list();
- if ((res = erts_sys_ddll_open(path, &ptr)) == 0) {
+ if ((res = erts_sys_ddll_open(path, &ptr, NULL)) == 0) {
maybe_unlock_driver_list(locked);
return ptr;
} else {