Fix undefined behavior in line drawing.#21512
Merged
opencv-pushbot merged 1 commit intoopencv:3.4from Jan 25, 2022
Merged
Conversation
Left shift of negative values is undefined.
Merged
vrabaud
added a commit
to vrabaud/opencv
that referenced
this pull request
Feb 9, 2022
Left shift of negative values is undefined but works in practice. A test is useless as there is no UBSAN on the build farm. This is a follow-up on https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44270 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44386 The pull request opencv#21512 was incomplete.
4 tasks
vrabaud
added a commit
to vrabaud/opencv
that referenced
this pull request
Feb 9, 2022
Left shift of negative values is undefined but works in practice. A test is useless as there is no UBSAN on the build farm. This is a follow-up on https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44270 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44386 The pull request opencv#21512 was incomplete.
vrabaud
added a commit
to vrabaud/opencv
that referenced
this pull request
Feb 9, 2022
https://godbolt.org/z/zhcj4h1xz Left shift of negative values is implementation defined. We make sure that we always shift a positive. A test is useless as there is no UBSAN on the build farm. This is a follow-up on https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44270 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44386 The pull request opencv#21512 was incomplete.
vrabaud
added a commit
to vrabaud/opencv
that referenced
this pull request
Feb 9, 2022
https://godbolt.org/z/zhcj4h1xz Left shift of negative values is implementation defined. We make sure that we always shift a positive. A test is useless as there is no UBSAN on the build farm. This is a follow-up on https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44270 and https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=44386 The pull request opencv#21512 was incomplete.
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Left shift of negative values is undefined but works in practice.
A test is useless as there is no MSAN on the build farm.
This is a follow-up on https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=40230
Pull Request Readiness Checklist
See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request