sd-journal: fix bad memory access

This commit is contained in:
Lennart Poettering 2012-10-16 22:59:28 +02:00
parent 4b69bfdb5b
commit 44a5fa34d9
1 changed files with 3 additions and 1 deletions

View File

@ -1258,11 +1258,13 @@ static int remove_file(sd_journal *j, const char *prefix, const char *filename)
return 0;
hashmap_remove(j->files, f->path);
log_debug("File %s got removed.", f->path);
journal_file_close(f);
j->current_invalidate_counter ++;
log_debug("File %s got removed.", f->path);
return 0;
}