diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2012-07-20 13:30:18 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2012-08-13 13:19:52 -0300 |
commit | 2b38cf2e033d90fb50fc967f535935b170dc507d (patch) | |
tree | 1ac9ec5b947b22ceba04eea19d134458a1c40732 /error.c | |
parent | 5f0f0e13e1f714704d96f04050674c3102376409 (diff) |
qerror: qerror_format(): return an allocated string
Simplifies current and future users.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -65,10 +65,7 @@ bool error_is_set(Error **errp) const char *error_get_pretty(Error *err) { if (err->msg == NULL) { - QString *str; - str = qerror_format(err->fmt, err->obj); - err->msg = g_strdup(qstring_get_str(str)); - QDECREF(str); + err->msg = qerror_format(err->fmt, err->obj); } return err->msg; |