Skip to content
Snippets Groups Projects

gdiplus: Avoid computation overflow and underflow by using hypotf

Merged Bartosz Kosiorek requested to merge gang65/wine:hypot into master
All threads resolved!

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45123

In gdiplus/graphicspath.c calculating the Pythagorean addition is needed, which is defined as:

a ⊕ b = sqrt(a^2+b^2)

This is hypotenuse, or the length of the longest side of a right-angled triangle, that we know the other 2 sides, a and b. https://en.wikipedia.org/wiki/Pythagorean_addition

By using sqrt(a * a + b * b), for large (or small) a or b, there is a possibility of overflow (underflow), although the result itself is not that big (small) to cause overflow (underflow).

To overcome this problem, there are implementations of hypotenuse that do not use power of 2, and use other methods to calculate the result. To calculate a ⊕ b, you can easily use hypotf(a,b).

https://en.cppreference.com/w/cpp/numeric/math/hypot

Edited by Bartosz Kosiorek

Merge request reports

Merge request pipeline #19017 skipped

Merge request pipeline skipped for 1848fd33

Approved by

Merged by Alexandre JulliardAlexandre Julliard 1 year ago (Nov 27, 2023 11:21pm UTC)

Merge details

  • Changes merged into master with 1848fd33.
  • Deleted the source branch.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Bartosz Kosiorek added 119 commits

    added 119 commits

    Compare with previous version

  • Bartosz Kosiorek added 2 commits

    added 2 commits

    • dce381ba - gdiplus/graphicspath: Avoid computation overflow and underflow by using hypotf.
    • 226ec926 - gdiplus/font: Avoid computation overflow and underflow by using hypotf

    Compare with previous version

  • Bartosz Kosiorek resolved all threads

    resolved all threads

  • I don't think there is a reason to prefer REAL over float.

  • Bartosz Kosiorek resolved all threads

    resolved all threads

  • Bartosz Kosiorek added 2 commits

    added 2 commits

    • 346af60d - gdiplus/graphicspath: Avoid computation overflow and underflow by using hypotf.
    • 1c4829de - gdiplus/font: Avoid computation overflow and underflow by using hypotf

    Compare with previous version

  • Bartosz Kosiorek resolved all threads

    resolved all threads

  • Esme Povirk approved this merge request

    approved this merge request

  • Alexandre Julliard added 42 commits

    added 42 commits

    • 1c4829de...1a3a026d - 40 commits from branch wine:master
    • 08653cf3 - gdiplus/graphicspath: Avoid computation overflow and underflow by using hypotf.
    • 1848fd33 - gdiplus/font: Avoid computation overflow and underflow by using hypotf.

    Compare with previous version

  • Alexandre Julliard approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading