This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug other/53997] New: [PATCH] fixed format string issue in gcc/libgcc/config/libbid/bid128_string.c


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53997

             Bug #: 53997
           Summary: [PATCH] fixed format string issue in
                    gcc/libgcc/config/libbid/bid128_string.c
    Classification: Unclassified
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ettl.martin@gmx.de


Created attachment 27814
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=27814
proposed patch

Please review the attached patch. It fixes a format string issue in file:
gcc/libgcc/config/libbid/bid128_string.c


This patch replaces the format string in an sprintf expression from %u to %d:

      len += sprintf (str + len, "%u", exp);

because the variable exp is of type int, which requires %d.

Best regards

Ettl Martin


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]