Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Reber <areber@redhat.com>2019-05-15 09:09:31 +0300
committerAndrei Vagin <avagin@gmail.com>2019-09-07 15:59:50 +0300
commitc189a9bbf2e8b7a7c05cab747c728cf6e286997e (patch)
treee6a4477544ecf9fd9481a788e73d76e6b02a39f3 /compel/src
parent8502bc2010637c74310bec135605f53a24972ab4 (diff)
compel: fix clang 'value stored is never read'
criu-3.12/compel/src/lib/infect.c:276:3: warning: Value stored to 'ret' is never read Signed-off-by: Adrian Reber <areber@redhat.com>
Diffstat (limited to 'compel/src')
-rw-r--r--compel/src/lib/infect.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/compel/src/lib/infect.c b/compel/src/lib/infect.c
index 09c2c53f9..f0bcaf334 100644
--- a/compel/src/lib/infect.c
+++ b/compel/src/lib/infect.c
@@ -273,7 +273,6 @@ try_again:
goto err;
}
- ret = 0;
if (free_status)
free_status(pid, ss, data);
goto try_again;