aboutsummaryrefslogtreecommitdiffstats
path: root/erts/epmd
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2014-03-21 16:39:45 +0100
committerHenrik Nord <[email protected]>2014-03-21 16:39:49 +0100
commit0aa69369016b20ea6a02ecf0ab9b2ce7e05325b0 (patch)
treeb6feb89746cbefe3bc620b1bc3acac91b15c7488 /erts/epmd
parenta4030a89eb9a22d250dba2793f274f8731126ea8 (diff)
parente444e9a2ac6a2d70a34d95c97c4af0d39aac232d (diff)
downloadotp-0aa69369016b20ea6a02ecf0ab9b2ce7e05325b0.tar.gz
otp-0aa69369016b20ea6a02ecf0ab9b2ce7e05325b0.tar.bz2
otp-0aa69369016b20ea6a02ecf0ab9b2ce7e05325b0.zip
Merge branch 'glacjay/epmd-argv'
* glacjay/epmd-argv: ensure argv large enough for all possible args OTP-11808
Diffstat (limited to 'erts/epmd')
-rw-r--r--erts/epmd/src/epmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/epmd/src/epmd.c b/erts/epmd/src/epmd.c
index 5d5c3a1c3c..1678d537d1 100644
--- a/erts/epmd/src/epmd.c
+++ b/erts/epmd/src/epmd.c
@@ -52,7 +52,7 @@ static int epmd_main(int, char **, int);
int epmd_dbg(int level,int port) /* Utility to debug epmd... */
{
- char* argv[MAX_DEBUG+2];
+ char* argv[MAX_DEBUG+4];
char ibuff[100];
int argc = 0;