* pwd/getpw.c: Add warning since no buffer size is given and
	therefore no overrun tests are possible.

1999-06-30  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* pwd/pwd.h: Add getpw prototype declaration.

1999-06-30  Ulrich Drepper  <drepper@cygnus.com>
This commit is contained in:
Ulrich Drepper 1999-06-30 16:58:13 +00:00
parent 1cda411d51
commit 16848c985d
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,12 @@
1999-06-30 Ulrich Drepper <drepper@cygnus.com>
* pwd/getpw.c: Add warning since no buffer size is given and
therefore no overrun tests are possible.
1999-06-30 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* pwd/pwd.h: Add getpw prototype declaration.
1999-06-30 Ulrich Drepper <drepper@cygnus.com>
* wcsmbs/wcsrchr.c: Fix handling of L'\0' parameter.

View File

@ -58,3 +58,5 @@ __getpw (uid, buf)
return 0;
}
weak_alias (__getpw, getpw)
link_warning (getpw, "the `getpw' function is dangerous and should not be used.")