diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-26 16:32:47 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-03-26 16:32:47 +0000 |
commit | caf5f668e4ca335b6ae3cc7138411cb2b2c5ef97 (patch) | |
tree | 7e88f8a0cce2925b50486de38b6bedcf9093963f /sax/test | |
parent | fb2dbe00e9998f0733fd42729dd96fbbd07fc1b4 (diff) |
MWS_SRX644: migrate branch mws_srx644 -> HEAD
Diffstat (limited to 'sax/test')
-rw-r--r-- | sax/test/sax/testsax.cxx | 4 | ||||
-rw-r--r-- | sax/test/sax/testwriter.cxx | 6 | ||||
-rw-r--r-- | sax/test/saxdemo.cxx | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx index e7946b9ab2a3..d2d0df8d2bd4 100644 --- a/sax/test/sax/testsax.cxx +++ b/sax/test/sax/testsax.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testsax.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: jbu $ $Date: 2002-05-15 16:35:37 $ + * last change: $Author: hr $ $Date: 2003-03-26 17:32:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses diff --git a/sax/test/sax/testwriter.cxx b/sax/test/sax/testwriter.cxx index 89e1de587b84..e70fda849fc7 100644 --- a/sax/test/sax/testwriter.cxx +++ b/sax/test/sax/testwriter.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testwriter.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: jbu $ $Date: 2002-05-15 16:35:38 $ + * last change: $Author: hr $ $Date: 2003-03-26 17:32:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -96,7 +96,7 @@ class OFileWriter : public WeakImplHelper1< XOutputStream > { public: - OFileWriter( char *pcFile ) { strcpy( m_pcFile , pcFile ); m_f = 0; } + OFileWriter( char *pcFile ) { strncpy( m_pcFile, pcFile, 256 - 1 ); m_f = 0; } public: diff --git a/sax/test/saxdemo.cxx b/sax/test/saxdemo.cxx index f1ba17c5a870..1ad4719b3663 100644 --- a/sax/test/saxdemo.cxx +++ b/sax/test/saxdemo.cxx @@ -2,9 +2,9 @@ * * $RCSfile: saxdemo.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: jbu $ $Date: 2002-05-15 16:36:00 $ + * last change: $Author: hr $ $Date: 2003-03-26 17:32:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -479,7 +479,7 @@ class OFileWriter : public WeakImplHelper1< XOutputStream > { public: - OFileWriter( char *pcFile ) { strcpy( m_pcFile , pcFile ); m_f = 0; } + OFileWriter( char *pcFile ) { strncpy( m_pcFile , pcFile, 256 - 1 ); m_f = 0; } public: |