* sysdeps/unix/sysv/linux/getsysstats.c (get_proc_path):
	Initialize result.
This commit is contained in:
Andreas Jaeger 2000-07-06 09:26:45 +00:00
parent fe4e204f8f
commit 71cebc12d3
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2000-07-06 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/getsysstats.c (get_proc_path):
Initialize result.
* math/test-fpucw.c: Include <stdio.h> for printf.
2000-07-05 Greg McGary <greg@mcgary.org>

View File

@ -45,7 +45,7 @@ get_proc_path (char *buffer, size_t bufsize)
{
struct mntent mount_point;
struct mntent *entry;
char *result;
char *result = NULL;
char *copy_result;
FILE *fp;