mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
lxc_controller: Don't leak @name
The @name variable is VIR_STRDUP()-ed into, but never freed. In fact, there's no need to duplicate a command line argument since all places where @name is used expect const char. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
3b56425938
commit
0e6891106d
@ -2249,7 +2249,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
pid_t pid;
|
||||
int rc = -1;
|
||||
char *name = NULL;
|
||||
const char *name = NULL;
|
||||
size_t nveths = 0;
|
||||
char **veths = NULL;
|
||||
int handshakeFd = -1;
|
||||
@ -2300,8 +2300,7 @@ int main(int argc, char *argv[])
|
||||
break;
|
||||
|
||||
case 'n':
|
||||
if (VIR_STRDUP(name, optarg) < 0)
|
||||
goto cleanup;
|
||||
name = optarg;
|
||||
break;
|
||||
|
||||
case 'v':
|
||||
|
Loading…
x
Reference in New Issue
Block a user