diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:43:37 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:43:37 +0000 |
commit | 23939a6ee5e192904d4f467913f97555b9c1a0ea (patch) | |
tree | 1e7f3295591a201a04630701c70ea3fa708b46c8 /tools | |
parent | bd96be4114edc2cca5a1c052af8935265f222278 (diff) |
INTEGRATION: CWS ooo20031216 (1.20.106); FILE MERGED
2003/12/23 13:39:50 waratah 1.20.106.1: #i1858# initialise some variables that may be unitialised when used
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bootstrp/prj.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/bootstrp/prj.cxx b/tools/bootstrp/prj.cxx index cfda4c2441ae..2caeb39d32ad 100644 --- a/tools/bootstrp/prj.cxx +++ b/tools/bootstrp/prj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: prj.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: hr $ $Date: 2003-03-27 17:03:04 $ + * last change: $Author: hr $ $Date: 2004-02-04 13:43:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1383,7 +1383,8 @@ void StarWriter::InsertTokenLine ( ByteString& rString ) static ByteString aDirName; BOOL bPrjDep = FALSE; BOOL bHardDep = FALSE; - int nCommandType, nOSType; + int nCommandType = 0; + int nOSType = 0; CommandData* pCmdData; SByteStringList *pDepList2 = NULL; Prj* pPrj; |