Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / external / zxing / no_sanitize_ignored.patch.0
blob692695e50a75c553511efb983cb490c260456af3
1 --- core/src/Matrix.h   2023-02-24 14:46:06.244773735 +0000
2 +++ core/src/Matrix.h   2023-02-24 14:46:12.619482571 +0000
3 @@ -34,9 +34,6 @@
4  public:
5         Matrix() = default;
6  
7 -#ifdef __GNUC__
8 -       __attribute__((no_sanitize("signed-integer-overflow")))
9 -#endif
10         Matrix(int width, int height, value_t val = {}) : _width(width), _height(height), _data(_width * _height, val) {
11                 if (width != 0 && Size(_data) / width != height)
12                         throw std::invalid_argument("invalid size: width * height is too big");
13 --- core/src/BitMatrix.h        2023-02-24 15:56:00.813976749 +0000
14 +++ core/src/BitMatrix.h        2023-02-24 15:56:18.740156420 +0000
15 @@ -57,9 +57,6 @@
16  public:
17         BitMatrix() = default;
19 -#ifdef __GNUC__
20 -       __attribute__((no_sanitize("signed-integer-overflow")))
21 -#endif
22         BitMatrix(int width, int height) : _width(width), _height(height), _bits(width * height, UNSET_V)
23         {
24                 if (width != 0 && Size(_bits) / width != height)