mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virsh: cmdDesc: Automatically free memory
Decrease scope of variables and use automatic freeing. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
c344784b88
commit
5b811a199d
@ -8333,9 +8333,7 @@ cmdDesc(vshControl *ctl, const vshCmd *cmd)
|
||||
|
||||
int state;
|
||||
int type;
|
||||
char *desc = NULL;
|
||||
char *desc_edited = NULL;
|
||||
char *tmpstr;
|
||||
g_autofree char *desc = NULL;
|
||||
const vshCmdOpt *opt = NULL;
|
||||
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
||||
bool ret = false;
|
||||
@ -8379,6 +8377,8 @@ cmdDesc(vshControl *ctl, const vshCmd *cmd)
|
||||
|
||||
if (edit) {
|
||||
g_autoptr(vshTempFile) tmp = NULL;
|
||||
g_autofree char *desc_edited = NULL;
|
||||
char *tmpstr;
|
||||
|
||||
/* Create and open the temporary file. */
|
||||
if (!(tmp = vshEditWriteToTempFile(ctl, desc)))
|
||||
@ -8438,8 +8438,6 @@ cmdDesc(vshControl *ctl, const vshCmd *cmd)
|
||||
|
||||
ret = true;
|
||||
cleanup:
|
||||
VIR_FREE(desc_edited);
|
||||
VIR_FREE(desc);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user