* locale/programs/repertoire.c (repertoire_read): Always free

memory for repertoire file name [Coverity CID 270].
This commit is contained in:
Ulrich Drepper 2007-10-13 05:26:27 +00:00
parent 78a9b2dc58
commit fab1a490ac
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2007-10-12 Ulrich Drepper <drepper@redhat.com>
* locale/programs/repertoire.c (repertoire_read): Always free
memory for repertoire file name [Coverity CID 270].
* elf/cache.c (save_aux_cache): Free memory allocated for
temporary file name [Coverity CID 267].

View File

@ -113,8 +113,7 @@ repertoire_read (const char *filename)
filename);
repfile = lr_open (buf, repertoiremap_hash);
if (repfile == NULL)
free (buf);
free (buf);
}
}