summaryrefslogtreecommitdiffstats
path: root/tpm.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2015-02-10 15:11:17 +0100
committerMarkus Armbruster <armbru@redhat.com>2015-02-18 10:51:37 +0100
commitbc09a287d85505eabd1f548eae3a188ece902e49 (patch)
tree6f01fb78da28c9cc5cfcd36f16592745e37f04e5 /tpm.c
parent29b762f5f0efdb6a0cb693be6df2988c195523db (diff)
downloadhqemu-bc09a287d85505eabd1f548eae3a188ece902e49.zip
hqemu-bc09a287d85505eabd1f548eae3a188ece902e49.tar.gz
tpm: Avoid qerror_report_err() outside QMP command handlers
qerror_report_err() is a transitional interface to help with converting existing monitor commands to QMP. It should not be used elsewhere. Replace by error_report_err() in initial startup helper configure_tpm(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'tpm.c')
-rw-r--r--tpm.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/tpm.c b/tpm.c
index c371023..4ffd9b9 100644
--- a/tpm.c
+++ b/tpm.c
@@ -162,8 +162,7 @@ static int configure_tpm(QemuOpts *opts)
/* validate backend specific opts */
qemu_opts_validate(opts, be->opts, &local_err);
if (local_err) {
- qerror_report_err(local_err);
- error_free(local_err);
+ error_report_err(local_err);
return 1;
}
@@ -174,8 +173,7 @@ static int configure_tpm(QemuOpts *opts)
tpm_backend_open(drv, &local_err);
if (local_err) {
- qerror_report_err(local_err);
- error_free(local_err);
+ error_report_err(local_err);
return 1;
}
OpenPOWER on IntegriCloud