X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Freadutmp.c;h=5f6bf88d7d69796c3b3f91bd122b84b59eaa3107;hb=0eeff3be000687cfd5aa94daba426c383e2c6950;hp=e4caa82e68e464105c16d0d5e146a68a759d898a;hpb=55b799acc33983a85f56baf9139ac12e9288537b;p=gnulib.git diff --git a/lib/readutmp.c b/lib/readutmp.c index e4caa82e6..5f6bf88d7 100644 --- a/lib/readutmp.c +++ b/lib/readutmp.c @@ -27,12 +27,9 @@ #endif /* STDC_HEADERS || HAVE_STRING_H */ #include "readutmp.h" -#include "error.h" char *xmalloc (); -STRUCT_UTMP *utmp_contents = 0; - /* Copy UT->ut_name into storage obtained from malloc. Then remove any trailing spaces from the copy, NUL terminate it, and return the copy. */ @@ -53,43 +50,44 @@ extract_trimmed_name (ut) return trimmed_name; } -/* Read the utmp file FILENAME into UTMP_CONTENTS and return the - number of entries it contains. */ +/* Read the utmp file FILENAME into *UTMP_BUF, set *N_ENTRIES to the + number of entries read, and return zero. If there is any error, + return non-zero and don't modify the parameters. */ int -read_utmp (filename) +read_utmp (filename, n_entries, utmp_buf) const char *filename; + int *n_entries; + STRUCT_UTMP **utmp_buf; { FILE *utmp; struct stat file_stats; size_t n_read; size_t size; - - if (utmp_contents) - { - free (utmp_contents); - utmp_contents = 0; - } + STRUCT_UTMP *buf; utmp = fopen (filename, "r"); if (utmp == NULL) - error (1, errno, "%s", filename); + return 1; fstat (fileno (utmp), &file_stats); size = file_stats.st_size; if (size > 0) - utmp_contents = (STRUCT_UTMP *) xmalloc (size); + buf = (STRUCT_UTMP *) xmalloc (size); else { fclose (utmp); - return 0; + return 1; } /* Use < instead of != in case the utmp just grew. */ - n_read = fread (utmp_contents, 1, size, utmp); + n_read = fread (buf, 1, size, utmp); if (ferror (utmp) || fclose (utmp) == EOF || n_read < size) - error (1, errno, "%s", filename); + return 1; + + *n_entries = size / sizeof (STRUCT_UTMP); + *utmp_buf = buf; - return size / sizeof (STRUCT_UTMP); + return 0; }