nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 4078d60d69db0074634ff882fbe8a3e9857869e7
parent 46104dcc8e6469146d558e2a7a3125b26ab0c5a1
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Fri, 15 Dec 2006 04:50:57 +0000

fix breakage


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4002 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/files.c | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/files.c b/src/files.c @@ -1891,16 +1891,15 @@ int do_writeout(bool exiting) name_exists = (stat(answer, &st) != -1); full_answer = get_full_path(answer); - - /* Convert nulls to newlines. answer_len is the - * string's real length. */ - unsunder(answer, answer_len); - full_filename = get_full_path(openfile->filename); different_name = (strcmp((full_answer != NULL) ? full_answer : answer, (full_filename != NULL) ? full_filename : openfile->filename) != 0); + /* Convert nulls to newlines. answer_len is the + * string's real length. */ + unsunder(answer, answer_len); + if (full_filename != NULL) free(full_filename); if (full_answer != NULL)