diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-20 15:39:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-21 11:59:10 +0200 |
commit | 09fed2bcd3653f53f68a51b9162ba1f27b86fb2c (patch) | |
tree | df4aeba227996cd5c632b3f2e6a9cc7c18039b3a | |
parent | b6c8a233f272a36ad2595b7589a2b0afd987ec0a (diff) |
cid#708014 Uninitialized pointer field
Change-Id: Icfffb7ce6e34f31ae1bcc2964460e59f5486399d
-rw-r--r-- | sc/source/core/tool/adiasync.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/core/tool/adiasync.cxx b/sc/source/core/tool/adiasync.cxx index bd5b0b96ab17..ad41cfdb7796 100644 --- a/sc/source/core/tool/adiasync.cxx +++ b/sc/source/core/tool/adiasync.cxx @@ -38,6 +38,8 @@ void CALLTYPE ScAddInAsyncCallBack( double& nHandle, void* pData ) ScAddInAsync::ScAddInAsync() : SvtBroadcaster(), + pDocs( NULL ), + mpFuncData( NULL ), nHandle( 0 ) { // nur fuer aSeekObj ! } |