Free readline buffer in corner cases

This commit is contained in:
Arun Prakash Jana 2019-04-12 20:06:29 +05:30
parent 7b07e8e0e8
commit 3e4797f728
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 5 additions and 1 deletions

View File

@ -3830,6 +3830,8 @@ nochange:
if (chdir(ipath) == -1) {
printwarn();
if (tmp)
free(tmp);
goto nochange;
}
@ -3839,8 +3841,10 @@ nochange:
spawn(shell, "-c", tmp, path, F_CLI);
/* readline finishing touches */
add_history(tmp);
free(tmp);
}
if (tmp)
free(tmp);
}
#endif
}