提交 38b35148 编写于 作者: C Chris Lalancette

Remove an unnecessary variable from remoteIOReadMessage().

Signed-off-by: NChris Lalancette <clalance@redhat.com>
上级 b1e32305
......@@ -6942,10 +6942,9 @@ remoteIOReadMessage(virConnectPtr conn, struct private_data *priv,
if (priv->saslconn) {
if (priv->saslDecoded == NULL) {
char encoded[8192];
unsigned int encodedLen = sizeof(encoded);
int ret, err;
ret = remoteIOReadBuffer(conn, priv, in_open,
encoded, encodedLen);
encoded, sizeof(encoded));
if (ret < 0)
return -1;
if (ret == 0)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册