| Submitter | Kevin Wolf |
|---|---|
| Date | July 1, 2010, 11:11 a.m. |
| Message ID | <1277982694-28563-4-git-send-email-kwolf@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/57536/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/block/blkdebug.c b/block/blkdebug.c index 4ec8ca6..78cbff4 100644 --- a/block/blkdebug.c +++ b/block/blkdebug.c @@ -267,6 +267,8 @@ static int read_config(BDRVBlkdebugState *s, const char *filename) ret = 0; fail: + qemu_opts_reset(&inject_error_opts); + qemu_opts_reset(&set_state_opts); fclose(f); return ret; }
Forgetting to free them means that the next instance inherits all rules and gets its own rules only additionally. Signed-off-by: Kevin Wolf <kwolf@redhat.com> --- block/blkdebug.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)