Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/nvi/dist/common Remove unnecessary buffer alloc...



details:   https://anonhg.NetBSD.org/src/rev/177aa4adec3f
branches:  trunk
changeset: 834307:177aa4adec3f
user:      rin <rin%NetBSD.org@localhost>
date:      Tue Aug 07 11:25:45 2018 +0000

description:
Remove unnecessary buffer allocation and memcpy.
Partially taken from nvi2.

diffstat:

 external/bsd/nvi/dist/common/vi_db1.c |  30 ++++++++++++------------------
 1 files changed, 12 insertions(+), 18 deletions(-)

diffs (82 lines):

diff -r 6ea614e17d89 -r 177aa4adec3f external/bsd/nvi/dist/common/vi_db1.c
--- a/external/bsd/nvi/dist/common/vi_db1.c     Tue Aug 07 10:50:12 2018 +0000
+++ b/external/bsd/nvi/dist/common/vi_db1.c     Tue Aug 07 11:25:45 2018 +0000
@@ -15,7 +15,7 @@
 static const char sccsid[] = "Id: db1.c,v 10.1 2002/03/09 12:53:57 skimo Exp  (Berkeley) Date: 2002/03/09 12:53:57 ";
 #endif /* not lint */
 #else
-__RCSID("$NetBSD: vi_db1.c,v 1.9 2017/11/10 14:35:25 rin Exp $");
+__RCSID("$NetBSD: vi_db1.c,v 1.10 2018/08/07 11:25:45 rin Exp $");
 #endif
 
 #include <sys/types.h>
@@ -98,7 +98,6 @@
        db_recno_t l1, l2;
        const CHAR_T *wp;
        size_t wlen;
-       size_t nlen;
 
        /*
         * The underlying recno stuff handles zero by returning NULL, but
@@ -159,11 +158,6 @@
        sp->c_lno = OOBLNO;
 
 nocache:
-       nlen = 1024;
-retry:
-       /* data.size contains length in bytes */
-       BINC_GOTO(sp, CHAR_T, sp->c_lp, sp->c_blen, nlen);
-
        /* Get the line from the underlying database. */
        key.data = &lno;
        key.size = sizeof(lno);
@@ -179,12 +173,8 @@
                if (pp != NULL)
                        *pp = NULL;
                return (1);
-       case 0:
-               if (data.size > nlen) {
-                       nlen = data.size;
-                       goto retry;
-               } else
-                       memcpy(sp->c_lp, data.data, data.size);
+       default:
+               break;
        }
 
        if (FILE2INT(sp, data.data, data.size, wp, wlen)) {
@@ -199,7 +189,8 @@
        if (wp != data.data) {
            BINC_GOTOW(sp, sp->c_lp, sp->c_blen, wlen);
            MEMCPYW(sp->c_lp, wp, wlen);
-       }
+       } else
+           sp->c_lp = data.data;
        sp->c_lno = lno;
        sp->c_len = wlen;
 
@@ -560,8 +551,8 @@
                msgq(sp, M_DBERR, "007|unable to get last line");
                *lnop = 0;
                return (1);
-        case 0:
-               ;
+       default:
+               break;
        }
 
        memcpy(&lno, key.data, sizeof(lno));
@@ -570,8 +561,11 @@
            FILE2INT(sp, data.data, data.size, wp, wlen);
 
            /* Fill the cache. */
-           BINC_GOTOW(sp, sp->c_lp, sp->c_blen, wlen);
-           MEMCPYW(sp->c_lp, wp, wlen);
+           if (wp != data.data) {
+               BINC_GOTOW(sp, sp->c_lp, sp->c_blen, wlen);
+               MEMCPYW(sp->c_lp, wp, wlen);
+           } else
+               sp->c_lp = data.data;
            sp->c_lno = lno;
            sp->c_len = wlen;
        }



Home | Main Index | Thread Index | Old Index