Commit f95d509d authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

sk-unix: Don't zap error returned

If error happened during queue read don't zap it.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 421d46f7
...@@ -806,7 +806,7 @@ int collect_unix_sockets(void) ...@@ -806,7 +806,7 @@ int collect_unix_sockets(void)
if (!ret) if (!ret)
ret = read_sk_queues(); ret = read_sk_queues();
return 0; return ret;
} }
int resolve_unix_peers(void) int resolve_unix_peers(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment