diff options
author | Henrik Nord <[email protected]> | 2015-05-26 10:52:37 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2015-05-26 10:52:40 +0200 |
commit | 032f106a1ebdbf310dd430b2169f55967e1d1a92 (patch) | |
tree | 7f94502631bfe9b460515b43a683545bd35ea828 /erts/emulator | |
parent | 2d8a73e2099f239e75276680cda9914c852316ee (diff) | |
parent | cce681109c05ffa8cb88e83eb70ccf73c13d0c75 (diff) | |
download | otp-032f106a1ebdbf310dd430b2169f55967e1d1a92.tar.gz otp-032f106a1ebdbf310dd430b2169f55967e1d1a92.tar.bz2 otp-032f106a1ebdbf310dd430b2169f55967e1d1a92.zip |
Merge branch 'jlouis/cocci-noderef-fixes'
* jlouis/cocci-noderef-fixes:
Correct usage of sizeof() for pointer types
OTP-12771
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/beam/erl_node_tables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_node_tables.c b/erts/emulator/beam/erl_node_tables.c index bcf6311079..6d827c6bda 100644 --- a/erts/emulator/beam/erl_node_tables.c +++ b/erts/emulator/beam/erl_node_tables.c @@ -705,7 +705,7 @@ erts_set_this_node(Eterm sysname, Uint creation) erts_this_node->sysname = sysname; erts_this_node->creation = creation; erts_this_node_sysname = erts_this_node_sysname_BUFFER; - erts_snprintf(erts_this_node_sysname, sizeof(erts_this_node_sysname), + erts_snprintf(erts_this_node_sysname, sizeof(erts_this_node_sysname_BUFFER), "%T", sysname); (void) hash_put(&erts_node_table, (void *) erts_this_node); @@ -794,7 +794,7 @@ void erts_init_node_tables(void) erts_this_node->creation = 0; erts_this_node->dist_entry = erts_this_dist_entry; erts_this_node_sysname = erts_this_node_sysname_BUFFER; - erts_snprintf(erts_this_node_sysname, sizeof(erts_this_node_sysname), + erts_snprintf(erts_this_node_sysname, sizeof(erts_this_node_sysname_BUFFER), "%T", erts_this_node->sysname); (void) hash_put(&erts_node_table, (void *) erts_this_node); |