public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/1925] New: parameter check in yp_order() in nis/ypclnt
@ 2005-11-25 12:49 heiko dot nardmann at secunet dot com
  2005-11-25 16:05 ` [Bug libc/1925] " drepper at redhat dot com
  0 siblings, 1 reply; 2+ messages in thread
From: heiko dot nardmann at secunet dot com @ 2005-11-25 12:49 UTC (permalink / raw)
  To: glibc-bugs

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.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug libc/1925] parameter check in yp_order() in nis/ypclnt
  2005-11-25 12:49 [Bug libc/1925] New: parameter check in yp_order() in nis/ypclnt heiko dot nardmann at secunet dot com
@ 2005-11-25 16:05 ` drepper at redhat dot com
  0 siblings, 0 replies; 2+ messages in thread
From: drepper at redhat dot com @ 2005-11-25 16:05 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2005-11-25 16:05 -------
I added the patch to cvs.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-11-25 16:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-25 12:49 [Bug libc/1925] New: parameter check in yp_order() in nis/ypclnt heiko dot nardmann at secunet dot com
2005-11-25 16:05 ` [Bug libc/1925] " drepper at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).