From fd5ad16cfba6ba9c607480efb428aa97dc2b875a Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 19 Oct 2018 09:37:08 +0900 Subject: [PATCH] reply-password: initialize 'length' variable Follow-up for 1fd2786161feba4276a81c3468cfbfb118f56517. This fixes the following warning when built by clang: ``` ../src/reply-password/reply-password.c:76:21 warning: variable 'length' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] ``` Fixes CID#1396281 and CID#1396277. --- src/reply-password/reply-password.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reply-password/reply-password.c b/src/reply-password/reply-password.c index 5794dfd5353..d085da9f085 100644 --- a/src/reply-password/reply-password.c +++ b/src/reply-password/reply-password.c @@ -37,7 +37,7 @@ static int send_on_socket(int fd, const char *socket_name, const void *packet, s int main(int argc, char *argv[]) { _cleanup_free_ char *packet = NULL; _cleanup_close_ int fd = -1; - size_t length; + size_t length = 0; int r; log_set_target(LOG_TARGET_AUTO); -- 2.47.3