summaryrefslogtreecommitdiff
path: root/autodoc/source/tools/tkpchars.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-03-18 13:11:43 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-03-18 13:11:43 +0000
commit72ef55fe37b026d9f89cea441737d4c20fd35c73 (patch)
treefef618241613a0848764e048149f6f477a03df8d /autodoc/source/tools/tkpchars.cxx
parent179fc2e2e25d3e9bc7c198b1e9ea6651fc6de84a (diff)
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'autodoc/source/tools/tkpchars.cxx')
-rw-r--r--autodoc/source/tools/tkpchars.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/autodoc/source/tools/tkpchars.cxx b/autodoc/source/tools/tkpchars.cxx
index a6a62a6bc635..b4ffddd9b6af 100644
--- a/autodoc/source/tools/tkpchars.cxx
+++ b/autodoc/source/tools/tkpchars.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tkpchars.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: np $ $Date: 2002-05-14 09:02:21 $
+ * last change: $Author: hr $ $Date: 2003-03-18 14:11:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -113,7 +113,7 @@ CharacterSource::LoadText( const char * i_sSourceText )
nSourceSize = strlen(i_sSourceText);
dpSource = new char[nSourceSize+1];
- strcpy( dpSource, i_sSourceText);
+ strcpy( dpSource, i_sSourceText); // SAFE STRCPY (#100211# - checked)
BeginSource();
}
@@ -135,7 +135,7 @@ CharacterSource::InsertTextAtCurPos( const char * i_sText2Insert )
nSourceSize = strlen(i_sText2Insert);
dpSource = new char[nSourceSize+1];
- strcpy( dpSource, i_sText2Insert);
+ strcpy( dpSource, i_sText2Insert); // SAFE STRCPY (#100211# - checked)
BeginSource();
}