Commit 544347c0 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Oops, stop freeing stuff we can't necessarily free

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@449 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 6 deletions
+4 -6
......@@ -276,10 +276,10 @@ int do_insertfile(void)
char *tmp = do_browser(getcwd(NULL, 0));
#ifdef DISABLE_TABCOMP
free(realname);
realname = NULL;
#endif
if (tmp != NULL)
realname = tmp;
realname = mallocstrcpy(realname, tmp);
else
return do_insertfile();
}
......@@ -528,10 +528,8 @@ int do_writeout(int exiting)
if (i == NANO_TOFILES_KEY) {
char *tmp = do_browser(getcwd(NULL, 0));
if (tmp != NULL) {
free(answer);
answer = tmp;
}
if (tmp != NULL)
answer = mallocstrcpy(answer, tmp);
else
return do_writeout(exiting);
}
......
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