Bug 23031 - patch for Gfx.cc compile warning converting to 'int' from 'double'
Summary: patch for Gfx.cc compile warning converting to 'int' from 'double'
Status: RESOLVED FIXED
Alias: None
Product: poppler
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: poppler-bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-07-29 19:09 UTC by William Bader
Modified: 2009-07-30 13:09 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments
the patch (1.53 KB, patch)
2009-07-29 19:09 UTC, William Bader
Details | Splinter Review

Description William Bader 2009-07-29 19:09:58 UTC
Created attachment 28179 [details] [review]
the patch

Gfx.cc has three places where it assigns a double expression to an int variable.  gcc complains with
Gfx.cc: In member function 'void Gfx::doAxialShFill(GfxAxialShading*)':
Gfx.cc:2515: warning: converting to 'int' from 'double'
Gfx.cc:2529: warning: converting to 'int' from 'double'
Gfx.cc: In member function 'void Gfx::doImage(Object*, Stream*, GBool)':
Gfx.cc:3964: warning: converting to 'int' from 'double'
This code is a little risky because on some systems, assigning a double outside the range of INT_MIN .. INT_MAX to an int can cause a core dump.
I added an (int) cast to make gcc quiet.
To be safer, maybe teoricalj should be changed from int to double and the test should be
  if (floor(teoricalj) <= (double)i) ...
Comment 1 Albert Astals Cid 2009-07-30 13:09:03 UTC
Patch commited.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.