diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-06 09:17:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-06 09:17:02 +0000 |
commit | cf02d0a490ba3761f6599e2ef2ea8c27d4f74c4c (patch) | |
tree | a68ca6a13b519e18e3bc043655fc8af42f32d9be /vcl | |
parent | 82deca07b5ac9b0ed926635f20dfbc8401869bf5 (diff) |
coverity#1338231 Unchecked return value
Change-Id: I76161e87adc70fb8ae94c5c4cc7157b95f76b6f7
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/sgvtext.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/sgvtext.cxx b/vcl/source/filter/sgvtext.cxx index 1ab48a9d565e..545def3963e3 100644 --- a/vcl/source/filter/sgvtext.cxx +++ b/vcl/source/filter/sgvtext.cxx @@ -751,7 +751,7 @@ void FormatLine(UCHAR* TBuf, sal_uInt16& Index, ObjTextType& Atr0, ObjTextType& } while (!(AbsEnd || (Border && ((WordEndCnt>0) || WordEnd || Trenn)))); while (WErec0->Index<WErec->Index) { // to assure Line[] matches } - ProcessChar(*vOut.get(),TBuf,*WErec0,Atr0,WEnChar0,WEnChar-WEnChar0-1,Line,cLine); + (void)ProcessChar(*vOut.get(),TBuf,*WErec0,Atr0,WEnChar0,WEnChar-WEnChar0-1,Line,cLine); } (*R)=(*WErec); nChars=WEnChar; |