diff options
author | Hossein <hossein@libreoffice.org> | 2021-09-26 10:09:10 +0200 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2021-09-26 16:40:36 +0200 |
commit | 4fe1368f24d9f6230852fbf58b61f6c255cadb60 (patch) | |
tree | a98080c6b8c1437dc024bb890e698c595e5d3bef /emfio | |
parent | bfc70a9f314bbb5b03247be25544e9b4cc467f8d (diff) |
Removing unneeded check
The condition nPlanes != 1 is checked in the previous if statement and if it the content of nPlanes is anything other than 1, it would have used the break to exit the switch case. Thus, there is no need to check nPlanes == 1 again.
Change-Id: I1e07b48af16de40d39eabb6f2b666e41b0b0432e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122451
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/source/reader/wmfreader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emfio/source/reader/wmfreader.cxx b/emfio/source/reader/wmfreader.cxx index 831a8eb4a837..00542fa9acf7 100644 --- a/emfio/source/reader/wmfreader.cxx +++ b/emfio/source/reader/wmfreader.cxx @@ -832,7 +832,7 @@ namespace emfio break; } const vcl::PixelFormat ePixelFormat = vcl::bitDepthToPixelFormat( nBitCount ); - bool bOk = nWidth > 0 && nHeight > 0 && nBytesPerScan > 0 && nPlanes == 1 && ePixelFormat != vcl::PixelFormat::INVALID; + bool bOk = nWidth > 0 && nHeight > 0 && nBytesPerScan > 0 && ePixelFormat != vcl::PixelFormat::INVALID; if (bOk) { // must be enough data to fulfil the request |