diff options
| author | Amos Kong <akong@redhat.com> | 2013-11-21 16:42:50 +0800 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-11-21 17:39:15 +0100 |
| commit | 60aad298cb6de52f2716b2e82e1353ea9de95fd6 (patch) | |
| tree | a2642289649c9af4d3d75d5184567b01aee0d175 /backends/rng-egd.c | |
| parent | 2140cfa51d59177815f5b82e94ac48fb24909aba (diff) | |
| download | focaccia-qemu-60aad298cb6de52f2716b2e82e1353ea9de95fd6.tar.gz focaccia-qemu-60aad298cb6de52f2716b2e82e1353ea9de95fd6.zip | |
rng-egd: remove redundant free
We didn't set default chr_name, the free is redundant. Signed-off-by: Amos Kong <akong@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'backends/rng-egd.c')
| -rw-r--r-- | backends/rng-egd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/backends/rng-egd.c b/backends/rng-egd.c index 9e5a5366f7..6f56f9e4e4 100644 --- a/backends/rng-egd.c +++ b/backends/rng-egd.c @@ -167,7 +167,6 @@ static void rng_egd_set_chardev(Object *obj, const char *value, Error **errp) if (b->opened) { error_set(errp, QERR_PERMISSION_DENIED); } else { - g_free(s->chr_name); s->chr_name = g_strdup(value); } } |