2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 05:48:05 +00:00

sk-unix: Don't zap error returned

If error happened during queue read don't zap it.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov 2013-03-27 13:39:14 +04:00 committed by Pavel Emelyanov
parent 421d46f79e
commit f95d509d2e

View File

@ -806,7 +806,7 @@ int collect_unix_sockets(void)
if (!ret)
ret = read_sk_queues();
return 0;
return ret;
}
int resolve_unix_peers(void)