diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-09-07 15:21:13 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-09-07 17:01:08 +0200 |
commit | 32286d6523d0f46163f1c5e23253516d61c46c78 (patch) | |
tree | 6011f537893669d88523beedfc7eadc5040b739e /erts/emulator/beam/erl_bif_os.c | |
parent | 7bd69516a3cab79f869fde5787140ae810c35ef8 (diff) | |
download | otp-32286d6523d0f46163f1c5e23253516d61c46c78.tar.gz otp-32286d6523d0f46163f1c5e23253516d61c46c78.tar.bz2 otp-32286d6523d0f46163f1c5e23253516d61c46c78.zip |
Replace sprintf with erts_snprintf in beam
Diffstat (limited to 'erts/emulator/beam/erl_bif_os.c')
-rw-r--r-- | erts/emulator/beam/erl_bif_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_os.c b/erts/emulator/beam/erl_bif_os.c index 831e05493a..1062d4379b 100644 --- a/erts/emulator/beam/erl_bif_os.c +++ b/erts/emulator/beam/erl_bif_os.c @@ -58,7 +58,7 @@ BIF_RETTYPE os_getpid_0(BIF_ALIST_0) char pid_string[21]; /* enough for a 64 bit number */ int n; Eterm* hp; - sys_get_pid(pid_string); /* In sys.c */ + sys_get_pid(pid_string, sizeof(pid_string)); /* In sys.c */ n = sys_strlen(pid_string); hp = HAlloc(BIF_P, n*2); BIF_RET(buf_to_intlist(&hp, pid_string, n, NIL)); |