diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-31 15:20:35 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-31 21:02:10 +0100 |
commit | 4b9a538418e434e9a0757e6a7e814fb03ec32954 (patch) | |
tree | 223d4ac6374b454d80ad913fc7712735c3a04299 /forms/source | |
parent | d75ebbbf58feb1564e11495f1817a16c4950c6f0 (diff) |
cid#707862 Uninitialized pointer field
returned since
commit 04c3ef3c7224644b7e54ff215343391cef77f7b5
Date: Sat Dec 30 15:08:30 2023 +0200
ImgProdLockBytes is unnecessary
Change-Id: Iabd3cf1f64b87b8ffb8c73702ef138cf7b7d64a7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161502
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'forms/source')
-rw-r--r-- | forms/source/component/imgprod.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/forms/source/component/imgprod.cxx b/forms/source/component/imgprod.cxx index b9ee123e80ba..d281367eb23a 100644 --- a/forms/source/component/imgprod.cxx +++ b/forms/source/component/imgprod.cxx @@ -36,7 +36,8 @@ ImageProducer::ImageProducer() - : mnTransIndex(0) + : mpStm(nullptr) + , mnTransIndex(0) , mbConsInit(false) { moGraphic.emplace(); |