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 | |
parent | 2140cfa51d59177815f5b82e94ac48fb24909aba (diff) | |
download | hqemu-60aad298cb6de52f2716b2e82e1353ea9de95fd6.zip hqemu-60aad298cb6de52f2716b2e82e1353ea9de95fd6.tar.gz |
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>
-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 9e5a536..6f56f9e 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); } } |