client: fix mem leak after arg parsing

This commit is contained in:
Tim Kourt 2018-07-30 10:50:57 -07:00 committed by Denis Kenzior
parent 6be0f55d85
commit e3737fd44e
1 changed files with 1 additions and 0 deletions

View File

@ -461,6 +461,7 @@ static void readline_callback(char *prompt)
command_process_prompt(argv, argc);
l_strfreev(argv);
done:
l_free(prompt);
}