From 6019da39db2f879247b9b8097bfb3e79d22c03aa Mon Sep 17 00:00:00 2001 From: handa Date: Mon, 21 Jun 2004 01:27:56 +0000 Subject: [PATCH] (mtext_dup, mtext_cat, mtext_ncat, mtext_cpy) (mtext_ncpy, mtext_duplicate): Pay attention to the case that the length of source text 0. --- src/mtext.c | 35 ++++++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/src/mtext.c b/src/mtext.c index 5163323..26e265d 100644 --- a/src/mtext.c +++ b/src/mtext.c @@ -1531,11 +1531,14 @@ mtext_dup (MText *mt) int unit_bytes = UNIT_BYTES (mt->format); *new = *mt; - new->allocated = (mt->nbytes + 1) * unit_bytes; - MTABLE_MALLOC (new->data, new->allocated, MERROR_MTEXT); - memcpy (new->data, mt->data, new->allocated); - if (mt->plist) - new->plist = mtext__copy_plist (mt->plist, 0, mt->nchars, new, 0); + if (mt->nchars > 0) + { + new->allocated = (mt->nbytes + 1) * unit_bytes; + MTABLE_MALLOC (new->data, new->allocated, MERROR_MTEXT); + memcpy (new->data, mt->data, new->allocated); + if (mt->plist) + new->plist = mtext__copy_plist (mt->plist, 0, mt->nchars, new, 0); + } return new; } @@ -1572,7 +1575,9 @@ mtext_cat (MText *mt1, MText *mt2) { M_CHECK_READONLY (mt1, NULL); - return insert (mt1, mt1->nchars, mt2, 0, mt2->nchars); + if (mt2->nchars > 0) + insert (mt1, mt1->nchars, mt2, 0, mt2->nchars); + return mt1; } @@ -1621,7 +1626,9 @@ mtext_ncat (MText *mt1, MText *mt2, int n) M_CHECK_READONLY (mt1, NULL); if (n < 0) MERROR (MERROR_RANGE, NULL); - return insert (mt1, mt1->nchars, mt2, 0, mt2->nchars < n ? mt2->nchars : n); + if (mt2->nchars > 0) + insert (mt1, mt1->nchars, mt2, 0, mt2->nchars < n ? mt2->nchars : n); + return mt1; } @@ -1659,7 +1666,9 @@ mtext_cpy (MText *mt1, MText *mt2) { M_CHECK_READONLY (mt1, NULL); mtext_del (mt1, 0, mt1->nchars); - return insert (mt1, 0, mt2, 0, mt2->nchars); + if (mt2->nchars > 0) + insert (mt1, 0, mt2, 0, mt2->nchars); + return mt1; } /*=*/ @@ -1708,7 +1717,9 @@ mtext_ncpy (MText *mt1, MText *mt2, int n) if (n < 0) MERROR (MERROR_RANGE, NULL); mtext_del (mt1, 0, mt1->nchars); - return insert (mt1, 0, mt2, 0, mt2->nchars < n ? mt2->nchars : n); + if (mt2->nchars > 0) + insert (mt1, 0, mt2, 0, mt2->nchars < n ? mt2->nchars : n); + return mt1; } /*=*/ @@ -1752,10 +1763,12 @@ mtext_duplicate (MText *mt, int from, int to) { MText *new; - M_CHECK_RANGE (mt, from, to, NULL, new); + M_CHECK_RANGE_X (mt, from, to, NULL); new = mtext (); new->format = mt->format; - return insert (new, 0, mt, from, to); + if (from < to) + insert (new, 0, mt, from, to); + return new; } /*=*/ -- 1.7.10.4