cash_words_out function truncated its output by 1 character due to
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Mar 2000 22:10:52 +0000 (22:10 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Mar 2000 22:10:52 +0000 (22:10 +0000)
incorrect use of StrNCpy.

src/backend/utils/adt/cash.c

index 1dd31df343898e27b74ee15d2129322fd60d7d30..a255e2a3d0e2434b0a41eb4e2706ad2ba8ee2f65 100644 (file)
@@ -9,7 +9,7 @@
  * workings can be found in the book "Software Solutions in C" by
  * Dale Schumacher, Academic Press, ISBN: 0-12-632360-7.
  *
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/cash.c,v 1.33 2000/01/15 02:59:36 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/cash.c,v 1.34 2000/03/19 22:10:52 tgl Exp $
  */
 
 #include <limits.h>
@@ -723,7 +723,7 @@ cash_words_out(Cash *value)
    /* make a text type for output */
    result = (text *) palloc(strlen(buf) + VARHDRSZ);
    VARSIZE(result) = strlen(buf) + VARHDRSZ;
-   StrNCpy(VARDATA(result), buf, strlen(buf));
+   memcpy(VARDATA(result), buf, strlen(buf));
 
    return result;
 }  /* cash_words_out() */