libmount: fix leak in sample program

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2011-03-28 23:28:45 +02:00
parent c570f567eb
commit 7cf389f735
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ static int print_all(struct libmnt_context *cxt, char *pattern, int show_label)
while(mnt_table_next_fs(tb, itr, &fs) == 0) {
const char *type = mnt_fs_get_fstype(fs);
const char *src = mnt_fs_get_source(fs);
char *optstr = mnt_fs_strdup_options(fs);
const char *optstr = mnt_fs_get_options(fs);
if (type && pattern && !mnt_match_fstype(type, pattern))
continue;