diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-09-25 18:01:23 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-09-25 18:01:23 +0200 |
commit | d6089c81ce6d3184738be4f936e2cbd5008e077f (patch) | |
tree | 25a3a84235e7f43dfaf4bf33a2c506a249abe97d /erts/epmd/src/epmd.c | |
parent | ec28e2668b2e45d70efeb0005dcb2a70766cc7cb (diff) | |
parent | 32286d6523d0f46163f1c5e23253516d61c46c78 (diff) | |
download | otp-d6089c81ce6d3184738be4f936e2cbd5008e077f.tar.gz otp-d6089c81ce6d3184738be4f936e2cbd5008e077f.tar.bz2 otp-d6089c81ce6d3184738be4f936e2cbd5008e077f.zip |
Merge branch 'egil/r16/strengthen-buffer-copies'
* egil/r16/strengthen-buffer-copies:
Replace sprintf with erts_snprintf in beam
Replace sprintf with erts_snprintf in epmd
Replace sprintf with erts_snprintf in inet_gethost
Diffstat (limited to 'erts/epmd/src/epmd.c')
-rw-r--r-- | erts/epmd/src/epmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/epmd/src/epmd.c b/erts/epmd/src/epmd.c index 2267f9b12b..3577abf6ba 100644 --- a/erts/epmd/src/epmd.c +++ b/erts/epmd/src/epmd.c @@ -64,7 +64,7 @@ int epmd_dbg(int level,int port) /* Utility to debug epmd... */ if(port) { argv[argc++] = "-port"; - sprintf(ibuff,"%d",port); + erts_snprintf(ibuff, sizeof(ibuff), "%d",port); argv[argc++] = ibuff; } argv[argc] = NULL; |