Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb77ffcc authored by Dan Austin's avatar Dan Austin Committed by Android Git Automerger
Browse files

am 992debec: am 2dbb06b2: Merge "Disable integer sanitization checks for L_add...

am 992debec: am 2dbb06b2: Merge "Disable integer sanitization checks for L_add function, which performs controlled integer overflows."

* commit '992debec':
  Disable integer sanitization checks for L_add function, which performs controlled integer overflows.
parents 6d02d132 992debec
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -115,6 +115,7 @@ extern "C"
     Returns:
        L_sum = 32-bit sum of L_var1 and L_var2 (Word32)
    */
    __attribute__((no_sanitize("integer")))
    static inline Word32 L_add(Word32 L_var1, Word32 L_var2, Flag *pOverflow)
    {
        Word32 L_sum;