summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-25 11:15:00 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-25 12:44:58 +0000
commit13a9b2045727597c1ab6fa1dc01393b1a73ef280 (patch)
tree1c846b5973eb4abbf9bd88f35e272db1d20ea2fe
parent0367acdcc59e14b0b067976a08202e8afef0ecf3 (diff)
appears to be a missing break here
Change-Id: Ifb04133b1946303879bf860003749996512bec91 Reviewed-on: https://gerrit.libreoffice.org/33530 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/filter/ixpm/xpmread.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/filter/ixpm/xpmread.cxx b/vcl/source/filter/ixpm/xpmread.cxx
index 3be4e36f718c..6dc924f43924 100644
--- a/vcl/source/filter/ixpm/xpmread.cxx
+++ b/vcl/source/filter/ixpm/xpmread.cxx
@@ -423,6 +423,7 @@ bool XPMReader::ImplGetColSub( sal_uInt8* pDest )
*pDest++ = pRGBTable[ i ].red;
*pDest++ = pRGBTable[ i ].green;
*pDest++ = pRGBTable[ i ].blue;
+ break;
}
}
i++;