summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--binaryurp/source/reader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryurp/source/reader.cxx b/binaryurp/source/reader.cxx
index 7cabbd41c8a1..cbd18f1d8252 100644
--- a/binaryurp/source/reader.cxx
+++ b/binaryurp/source/reader.cxx
@@ -71,7 +71,7 @@ css::uno::Sequence< sal_Int8 > read(
if (n == 0 && eofOk) {
return css::uno::Sequence< sal_Int8 >();
}
- if (n != static_cast< sal_Int32 >(size)) {
+ if (o3tl::make_unsigned(n) != size) {
throw css::io::IOException(
"binaryurp::Reader: premature end of input");
}