This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc 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 libc/1925] New: parameter check in yp_order() in nis/ypclnt


The yp_order() function starts with the following check: 
 
  if (indomain == NULL || indomain[0] == '\0' || 
      inmap == NULL || inmap == '\0') 
    return YPERR_BADARGS; 
 
My lint tool complains about the checking of inmap against '\0'. Shouldn't this 
line look like: 
 
  if (indomain == NULL || indomain[0] == '\0' || 
      inmap == NULL || inmap[0] == '\0') 
    return YPERR_BADARGS; 
 
The same is true for function yp_all().

-- 
           Summary: parameter check in yp_order() in nis/ypclnt
           Product: glibc
           Version: 2.3.5
            Status: NEW
          Severity: minor
          Priority: P2
         Component: libc
        AssignedTo: drepper at redhat dot com
        ReportedBy: heiko dot nardmann at secunet dot com
                CC: glibc-bugs at sources dot redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=1925

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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