aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2021-06-15 21:53:34 -0700
committerTheodore Ts'o <tytso@mit.edu>2021-07-06 23:13:48 -0400
commit657715deb85ce5cdea7bc2cc11dde2058d73f4c9 (patch)
tree4db903a1c57cb4e615fe0dbf283192349e2bf11e
parentbeb863f144328fcae7ff44c0dba2846f2ea2b625 (diff)
downloade2fsprogs-657715deb85ce5cdea7bc2cc11dde2058d73f4c9.tar.gz
libext2fs: fix a -Wunused-label warning
Remove a label which isn't used. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--lib/ext2fs/unix_io.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index f4916b218..0eea1c2f3 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -329,7 +329,6 @@ success_unlock:
error_unlock:
mutex_unlock(data, BOUNCE_MTX);
-error_out:
if (actual >= 0 && actual < size)
memset((char *) buf+actual, 0, size-actual);
if (channel->read_error)