~ubuntu-branches/debian/stretch/librsvg/stretch

« back to all changes in this revision

Viewing changes to rsvg-css.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-04-17 17:15:52 UTC
  • mfrom: (1.1.33)
  • Revision ID: package-import@ubuntu.com-20120417171552-7ltw5zowghhty7zw
Tags: 2.36.1-1
* New upstream release.
* debian/patches/10_rsvg-gz.patch: Updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
399
399
 
400
400
    opacity = g_ascii_strtod (str, &end_ptr);
401
401
 
402
 
    if ((opacity == -HUGE_VAL || opacity == HUGE_VAL) && (ERANGE == errno) ||
 
402
    if (((opacity == -HUGE_VAL || opacity == HUGE_VAL) && (ERANGE == errno)) ||
403
403
        *end_ptr != '\0')
404
404
        opacity = 1.;
405
405