Skip to content
Snippets Groups Projects
Commit 51d11a1d authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

client/tarantool: interactive mode empty line leak fix

parent 40afdbcc
No related branches found
No related tags found
No related merge requests found
......@@ -235,14 +235,12 @@ run_interactive(struct tnt_stream *t, struct tnt_admin *a, char *host)
char *cmd;
while ((cmd = readline(prompt))) {
if (!cmd[0])
continue;
goto next;
if (reconnect) {
reconnect: if (reconnect_do(t, a))
reconnect = 0;
else {
free(cmd);
continue;
}
else
goto next;
}
if (tnt_query_is(cmd, strlen(cmd))) {
if (query(t, cmd) == -1) {
......@@ -263,6 +261,7 @@ reconnect: if (reconnect_do(t, a))
add_history(cmd);
if (reconnect)
goto reconnect;
next:
free(cmd);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment