mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-17 13:00:43 +08:00
Sun Jun 2 20:14:30 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* locale/programs/linereader.c (lr_open): Don't pass NULL to xstrdup; fix memory leak. (lr_close): Fix memory leak.
This commit is contained in:
parent
9f195df2d7
commit
20328c3962
@ -66,7 +66,7 @@ lr_open (const char *fname, kw_hash_fct_t hf)
|
||||
result = (struct linereader *) xmalloc (sizeof (*result));
|
||||
|
||||
result->fp = fp;
|
||||
result->fname = xstrdup (fname);
|
||||
result->fname = xstrdup (fname ? : "<stdin>");
|
||||
result->buf = NULL;
|
||||
result->bufsize = 0;
|
||||
result->lineno = 1;
|
||||
@ -80,6 +80,7 @@ lr_open (const char *fname, kw_hash_fct_t hf)
|
||||
{
|
||||
int save = errno;
|
||||
fclose (result->fp);
|
||||
free (result->fname);
|
||||
free (result);
|
||||
errno = save;
|
||||
return NULL;
|
||||
@ -107,6 +108,7 @@ void
|
||||
lr_close (struct linereader *lr)
|
||||
{
|
||||
fclose (lr->fp);
|
||||
free (lr->fname);
|
||||
free (lr->buf);
|
||||
free (lr);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user