diff options
author | Björn Gustavsson <[email protected]> | 2011-03-11 11:23:39 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-03-11 11:23:39 +0100 |
commit | 1f07334d042e478d385caa0d7634ebfa6703f27a (patch) | |
tree | 7ee4b8039614e702487c85e945f4b524309e761f /erts/emulator/beam/global.h | |
parent | 095158307f04dab2c38cc73ab9d1de0c1686ea01 (diff) | |
parent | 1aa1166460dc22791ab909bb0a8565b2e12a1820 (diff) | |
download | otp-1f07334d042e478d385caa0d7634ebfa6703f27a.tar.gz otp-1f07334d042e478d385caa0d7634ebfa6703f27a.tar.bz2 otp-1f07334d042e478d385caa0d7634ebfa6703f27a.zip |
Merge branch 'bjorn/binary-overflow/OTP-9117' into dev
* bjorn/binary-overflow/OTP-9117:
Fix 18 exabyte memory allocation failure
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 40cb634e11..432bdd705b 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -834,7 +834,7 @@ do { \ void erts_emasculate_writable_binary(ProcBin* pb); Eterm erts_new_heap_binary(Process *p, byte *buf, int len, byte** datap); Eterm erts_new_mso_binary(Process*, byte*, int); -Eterm new_binary(Process*, byte*, int); +Eterm new_binary(Process*, byte*, Uint); Eterm erts_realloc_binary(Eterm bin, size_t size); /* erl_bif_info.c */ |