simplify still more

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3947 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-11-08 13:03:37 +00:00
parent d23dcc5a25
commit 89eb5a96fb
1 changed files with 3 additions and 1 deletions

View File

@ -1874,11 +1874,13 @@ int do_writeout(bool exiting)
bool different_name = (strcmp(full_answer,
full_filename) != 0);
struct stat st;
bool name_exists = (stat(full_answer, &st) != -1);
bool name_exists;
free(full_filename);
free(full_answer);
name_exists = (stat(answer, &st) != -1);
if (different_name) {
if (name_exists) {
/* If we're using restricted mode, we aren't