diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-09 18:25:42 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-09 18:25:42 -0500 |
commit | 8e281b3f70f92535925332207061385f4d1935bc (patch) | |
tree | a44efb7d6b16c9f91bcfd459be72d3b6fc916e91 /src/nvim/msgpack_rpc/channel.c | |
parent | 57140446174a1e547b4799d75d6182a24ad78b44 (diff) | |
parent | dba8433723f1cb5dbfc7e09fde73219aba646f60 (diff) | |
download | rneovim-8e281b3f70f92535925332207061385f4d1935bc.tar.gz rneovim-8e281b3f70f92535925332207061385f4d1935bc.tar.bz2 rneovim-8e281b3f70f92535925332207061385f4d1935bc.zip |
Merge pull request #1429 from oni-link/fix.job_start.leak
Fix memory leak in job_start().
Diffstat (limited to 'src/nvim/msgpack_rpc/channel.c')
-rw-r--r-- | src/nvim/msgpack_rpc/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/msgpack_rpc/channel.c b/src/nvim/msgpack_rpc/channel.c index aa6008558f..da1dc8d1b5 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -119,7 +119,7 @@ void channel_teardown(void) /// Creates an API channel by starting a job and connecting to its /// stdin/stdout. stderr is forwarded to the editor error stream. /// -/// @param argv The argument vector for the process +/// @param argv The argument vector for the process. [consumed] /// @return The channel id uint64_t channel_from_job(char **argv) { |