diff options
author | Sverker Eriksson <[email protected]> | 2010-12-15 17:20:46 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-02-03 17:33:43 +0100 |
commit | 651c99b7aac8ac7ca7f84efa0d3bd3b541d6f3a4 (patch) | |
tree | 29e555424f947f7a29fa615dd89de5c9017b6d5b /erts/emulator/beam/erl_db.c | |
parent | 561f6fd2bc8367acd1bceea291303adb18ad0b93 (diff) | |
download | otp-651c99b7aac8ac7ca7f84efa0d3bd3b541d6f3a4.tar.gz otp-651c99b7aac8ac7ca7f84efa0d3bd3b541d6f3a4.tar.bz2 otp-651c99b7aac8ac7ca7f84efa0d3bd3b541d6f3a4.zip |
HALFWORD ETS Real matching on relative terms
Diffstat (limited to 'erts/emulator/beam/erl_db.c')
-rw-r--r-- | erts/emulator/beam/erl_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_db.c b/erts/emulator/beam/erl_db.c index f045690060..914eedce0c 100644 --- a/erts/emulator/beam/erl_db.c +++ b/erts/emulator/beam/erl_db.c @@ -2738,7 +2738,7 @@ BIF_RETTYPE ets_match_spec_run_r_3(BIF_ALIST_3) BIF_TRAP3(bif_export[BIF_ets_match_spec_run_r_3], BIF_P,lst,BIF_ARG_2,ret); } - res = db_prog_match(BIF_P, mp, CAR(list_val(lst)), NULL, 0, &dummy); + res = db_prog_match(BIF_P, mp, CAR(list_val(lst)), NULL, NULL, 0, &dummy); if (is_value(res)) { sz = size_object(res); hp = HAlloc(BIF_P, sz + 2); |