diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-10-07 11:09:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-10-07 11:46:58 +0100 |
commit | 470af978eb397e2078e5ee1a0b146b00de01e280 (patch) | |
tree | f615020de52079a0d6d7908786d7e8851c0d2868 /basic/source/comp | |
parent | 3c2983ded9f0f646a5b543e16e0d9a9bbf476e4e (diff) |
CID#707648 uninitialized member
Change-Id: Ib8371710dd6c856b143782ca9c18f4ee76798f0e
Diffstat (limited to 'basic/source/comp')
-rw-r--r-- | basic/source/comp/scanner.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/basic/source/comp/scanner.cxx b/basic/source/comp/scanner.cxx index b59e22ac263c..d966406b4f42 100644 --- a/basic/source/comp/scanner.cxx +++ b/basic/source/comp/scanner.cxx @@ -47,6 +47,7 @@ SbiScanner::SbiScanner( const OUString& rBuf, StarBASIC* p ) : aBuf( rBuf ) bInStatement = bPrevLineExtentsComment = false; bHash = true; + pSaveLine = NULL; } SbiScanner::~SbiScanner() |