nano

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

commit 5d8d0b19be9944a7aba453ef2e36552b3b7acf82
parent 86d8fc37d792376420f5e083dce43fa3a668c505
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 26 May 2005 05:53:29 +0000

remove redundancy


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

Diffstat:
Msrc/global.c | 7++-----
1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/src/global.c b/src/global.c @@ -1216,12 +1216,9 @@ void thanks_for_all_the_fish(void) } #endif #ifdef ENABLE_MULTIBUFFER - if (open_files != NULL) { - /* Free the memory associated with each open file buffer. */ - while (open_files != open_files->prev) - open_files = open_files->prev; + /* Free the memory associated with each open file buffer. */ + if (open_files != NULL) free_openfilestruct(open_files); - } #else if (fileage != NULL) free_filestruct(fileage);