diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:45:02 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-02-04 12:45:02 +0000 |
commit | 056325d3226f442be1a0d7d3423494823de589cb (patch) | |
tree | ed4b57675a9fcd39a4508109bad2bedddde0fe16 /tools | |
parent | de81f75de2d23ab1dd1f9e45a9e21d9954658962 (diff) |
INTEGRATION: CWS ooo20031216 (1.7.190); FILE MERGED
2004/01/26 20:19:16 mh 1.7.190.2: RESYNC: (1.7-1.8); FILE MERGED
2003/12/23 11:37:03 waratah 1.7.190.1: #i1858# correct uninitialised variable
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/generic/config.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/source/generic/config.cxx b/tools/source/generic/config.cxx index 8eb2d7cb613e..dc83eeaec2fe 100644 --- a/tools/source/generic/config.cxx +++ b/tools/source/generic/config.cxx @@ -2,9 +2,9 @@ * * $RCSfile: config.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: vg $ $Date: 2004-01-06 18:34:06 $ + * last change: $Author: hr $ $Date: 2004-02-04 13:45:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -282,7 +282,7 @@ static void ImplMakeConfigList( ImplConfigData* pData, unsigned int nKeyLen; unsigned int i; const BYTE* pLine; - ImplKeyData* pPrevKey; + ImplKeyData* pPrevKey = NULL; ImplKeyData* pKey; ImplGroupData* pPrevGroup = NULL; ImplGroupData* pGroup = NULL; |