Commit 89eb5a96 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

simplify still more

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3947 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent d23dcc5a
Showing with 3 additions and 1 deletion
+3 -1
......@@ -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
......
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