From 5f4222f57d2963fdfaa04304328c2bc5a7527d17 Mon Sep 17 00:00:00 2001 From: Peter Howkins Date: Wed, 4 Jul 2018 02:09:06 +0100 Subject: [PATCH] doc/util/dbtoman: Coverity 89668 --- cde/doc/util/dbtoman/instant/tables.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cde/doc/util/dbtoman/instant/tables.c b/cde/doc/util/dbtoman/instant/tables.c index 7c223e3e..86c87975 100644 --- a/cde/doc/util/dbtoman/instant/tables.c +++ b/cde/doc/util/dbtoman/instant/tables.c @@ -1836,9 +1836,9 @@ TblDoColSpec(short number, /* this column number */ tcsp->aligncharoff = ( pcsp ) ? pcsp->aligncharoff : 0; if ( cp = FindAttValByName(ep, "COLWIDTH") ) - strcpy(tcsp->colwidth, cp); + snprintf(tcsp->colwidth, sizeof(tcsp->colwidth), "%s", cp); else - strcpy(tcsp->colwidth, ( pcsp ) ? pcsp->colwidth : ""); + snprintf(tcsp->colwidth, sizeof(tcsp->colwidth), "%s", ( pcsp ) ? pcsp->colwidth : ""); if ( cp = FindAttValByName(ep, "COLSEP") ) tcsp->colsep = !strcmp(cp, "1"); -- 2.25.1