diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 14:15:59 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 21:12:57 +0100 |
commit | b5078c327ac3f0fac95b46bcb5349c745209bc03 (patch) | |
tree | b00d8014080c2c532de06c871563a53366788a08 /sw | |
parent | fec6711974ed856075890bbdcfe8fd9738654498 (diff) |
coverity#708513 Uninitialized pointer field
Change-Id: Ifcc2356717de7227c52649351f6c7b29568269fe
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8scan.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8scan.hxx b/sw/source/filter/ww8/ww8scan.hxx index 587b8f9448d7..2c3c3d463aa7 100644 --- a/sw/source/filter/ww8/ww8scan.hxx +++ b/sw/source/filter/ww8/ww8scan.hxx @@ -833,7 +833,8 @@ struct WW8PLCFxDesc //GetSprms will not search for the sprms, but instead take the //existing ones. WW8PLCFxDesc() - : pIdStk(0) + : pPLCFx(0) + , pIdStk(0) , pMemPos(0) , nOrigSprmsLen(0) , nStartPos(WW8_CP_MAX) |