Commit 2773184d authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Handle ~~ in tab comp without segfaulting =)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@339 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 3 additions and 2 deletions
+3 -2
......@@ -534,8 +534,9 @@ char *real_dir_from_tilde (char *buf)
int fd, i, status, searchctr = 1;
if (buf[0] == '~') {
if (buf[1] == '/') {
if (buf[1] == '~')
goto abort; /* Handle ~~ without segfaulting =) */
else if (buf[1] == '/') {
if (getenv("HOME") != NULL) {
dirtmp = nmalloc(strlen(buf) + 2 + strlen(getenv("HOME")));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment