diff options
author | Henrik Nord <[email protected]> | 2014-03-21 16:39:45 +0100 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-03-21 16:39:49 +0100 |
commit | 0aa69369016b20ea6a02ecf0ab9b2ce7e05325b0 (patch) | |
tree | b6feb89746cbefe3bc620b1bc3acac91b15c7488 /erts/epmd/src | |
parent | a4030a89eb9a22d250dba2793f274f8731126ea8 (diff) | |
parent | e444e9a2ac6a2d70a34d95c97c4af0d39aac232d (diff) | |
download | otp-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/src')
-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 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; |