[Bug time/23976] New: trunk/timezone/zdump.c:811: missing call to va_end ?

dcb314 at hotmail dot com sourceware-bugzilla@sourceware.org
Tue Dec 11 10:14:00 GMT 2018


https://sourceware.org/bugzilla/show_bug.cgi?id=23976

            Bug ID: 23976
           Summary: trunk/timezone/zdump.c:811: missing call to va_end ?
           Product: glibc
           Version: unspecified
            Status: UNCONFIRMED
          Severity: minor
          Priority: P2
         Component: time
          Assignee: unassigned at sourceware dot org
          Reporter: dcb314 at hotmail dot com
  Target Milestone: ---

trunk/timezone/zdump.c:811]: (error) va_list 'args' was opened but not closed
by va_end().

Source code is

    if (n < 0)
      return n;

Suggest new code

    if (n < 0) {
      va_end(args);
      return n;
    }

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the Glibc-bugs mailing list