include/basic/sbxvar.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f7b34a779eb49498ecce60b873538c53ec5bc278 Author: Caolán McNamara <[email protected]> AuthorDate: Mon Aug 22 10:00:31 2022 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Mon Aug 22 15:04:59 2022 +0200 cid#1500544 Uninitialized scalar variable Change-Id: Ibe55cef41b6e6fd2ea10a9f4684e5f3e7926983a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138672 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/include/basic/sbxvar.hxx b/include/basic/sbxvar.hxx index 0c5f84b60752..2641df72ca26 100644 --- a/include/basic/sbxvar.hxx +++ b/include/basic/sbxvar.hxx @@ -77,7 +77,7 @@ struct SbxValues SbxDataType eType; SbxValues(): pData( nullptr ), eType(SbxEMPTY) {} - SbxValues( SbxDataType e ): eType(e) {} + SbxValues( SbxDataType e ): pData( nullptr ), eType(e) {} SbxValues( double _nDouble ): nDouble( _nDouble ), eType(SbxDOUBLE) {} void clear(SbxDataType type) {
