1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

*** empty log message ***

Tue Oct  8 13:58:31 1996  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>

	* hurd/ports-get.c (_hurd_ports_get): If the requested port is
	null, don't attempt mach_port_mod_refs.
This commit is contained in:
Thomas Bushnell, BSG
1996-10-08 18:38:08 +00:00
parent b853ee82a2
commit ce7f605ba7
13 changed files with 151 additions and 21 deletions

View File

@ -135,7 +135,8 @@ __getdelim (lineptr, n, terminator, stream)
if (i > copy)
i = copy;
found = (char *) __memccpy ((PTR) p, stream->__bufp, terminator, i);
found = (char *) __memccpy ((void *) p, stream->__bufp,
terminator, i);
if (found != NULL)
{
stream->__bufp += found - p;