diff options
author | Pedro Giffuni <pfg@apache.org> | 2015-12-02 05:09:40 +0000 |
---|---|---|
committer | Pedro Giffuni <pfg@apache.org> | 2015-12-02 05:09:40 +0000 |
commit | 9471f6b668106e031b74a25460c1cf73a04cd119 (patch) | |
tree | 14be5750f19c5005a9a51643e599211c4200fc83 /basic | |
parent | f076aca3be5acbf5014f832b8bfa7cbe9b810e11 (diff) |
Unitialized scalar variable
CID: 707498
Notes
Notes:
prefer: c631cf94e468d6f5ced5cacda3600c683c44dca2
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/runtime/methods1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx index 102769f91e59..fd31f367d52c 100644 --- a/basic/source/runtime/methods1.cxx +++ b/basic/source/runtime/methods1.cxx @@ -268,7 +268,7 @@ RTLFUNC(CCur) // JSM (void)pBasic; (void)bWrite; - SbxINT64 nCur; + SbxINT64 nCur = 0; if ( rPar.Count() == 2 ) { SbxVariable *pSbxVariable = rPar.Get(1); |