提交 b391b191 编写于 作者: D Daniel P. Berrange

Fix leak in qemuStringToArgvEnv upon OOM

The 'qemuStringToArgvEnv' method splits up a string of command
line env/args to an 'arglist' array. It then copies env vars
to a 'progenv' array and args to a 'progargv' array. When
copyin the env vars, it NULL-ifies the element in 'arglist'
that is copied.

Upon OOM the 'virStringListFree' is called on progenv and
arglist. Unfortunately, because the elements in 'arglist'
related to env vars have been set to NULL, the call to
virStringListFree(arglist) doesn't free anything, even
though some non-NULL args vars still exist later in the
array.

To fix this leak, stop NULL-ifying the 'arglist' elements,
and change the cleanup code to only free elements in the
'arglist' array, not 'progenv'.
Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
上级 6bb7f19e
......@@ -9819,10 +9819,8 @@ static int qemuStringToArgvEnv(const char *args,
if (envend > 0) {
if (VIR_REALLOC_N(progenv, envend+1) < 0)
goto error;
for (i = 0; i < envend; i++) {
for (i = 0; i < envend; i++)
progenv[i] = arglist[i];
arglist[i] = NULL;
}
progenv[i] = NULL;
}
......@@ -9841,7 +9839,8 @@ static int qemuStringToArgvEnv(const char *args,
return 0;
error:
virStringFreeList(progenv);
VIR_FREE(progenv);
VIR_FREE(progargv);
virStringFreeList(arglist);
return -1;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册