]> git.wh0rd.org Git - nano.git/commitdiff
simplify ngetdelim(), and update the copyright notice on ngetline() and
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 10 Aug 2007 17:03:29 +0000 (17:03 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 10 Aug 2007 17:03:29 +0000 (17:03 +0000)
ngetdelim() to account for modifications

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

ChangeLog
src/utils.c

index 3bcacf5e77575cbe2cc2c3dde69f04cf52685198..5f273d3dd14b51b5c09e9406ad8fcceef7ee24e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -44,6 +44,11 @@ CVS code -
        - Fix problem where replacing e.g. single-byte characters with
          multibyte ones could result in openfile->totsize's being
          miscalculated. (DLR)
+- utils.c:
+  ngetline(), ngetdelim()
+       - Update copyright notice to account for modifications. (DLR)
+  ngetdelim()
+       - Simplify. (DLR)
 - winio.c:
   get_key_buffer()
        - Fix inaccurate comments. (DLR)
index 38c313482eeed4f23edafb718e1bd5b691497ee4..7785c7cf04397c9eaae8732d00e807a512e9a89a 100644 (file)
@@ -165,7 +165,8 @@ void sunder(char *str)
  * Foundation's address updated:
  *
  * GNU Mailutils -- a suite of utilities for electronic mail
- * Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ * Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007 Free
+ * Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
@@ -207,15 +208,15 @@ ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
 
     /* Allocate the line the first time. */
     if (*lineptr == NULL) {
-       *lineptr = charalloc(MAX_BUF_SIZE);
        *n = MAX_BUF_SIZE;
+       *lineptr = charalloc(*n);
     }
 
     while ((c = getc(stream)) != EOF) {
        /* Check if more memory is needed. */
        if (indx >= *n) {
-           *lineptr = charealloc(*lineptr, *n + MAX_BUF_SIZE);
            *n += MAX_BUF_SIZE;
+           *lineptr = charealloc(*lineptr, *n);
        }
 
        /* Put the result in the line. */
@@ -228,8 +229,8 @@ ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
 
     /* Make room for the null character. */
     if (indx >= *n) {
-       *lineptr = charealloc(*lineptr, *n + MAX_BUF_SIZE);
        *n += MAX_BUF_SIZE;
+       *lineptr = charealloc(*lineptr, *n);
     }
 
     /* Null-terminate the buffer. */