2009-12-20 Chris Allegretta <chrisa@asty.org>

* files.c (is_file_writable): remove assert check for f, since it's not
          initialized at the time.  Fixes Savannah bug 28309, reported by Zoltan Kovacs.



git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4468 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Chris Allegretta
2009-12-20 05:55:41 +00:00
parent 869aca4392
commit 3c7dda6e7e
2 changed files with 5 additions and 1 deletions

View File

@@ -309,7 +309,7 @@ int is_file_writable(const char *filename)
if (ISSET(VIEW_MODE))
return TRUE;
assert(filename != NULL && f != NULL);
assert(filename != NULL);
/* Get the specified file's full path. */
full_filename = get_full_path(filename);