From: Yu Watanabe Date: Fri, 19 Oct 2018 00:37:08 +0000 (+0900) Subject: reply-password: initialize 'length' variable X-Git-Tag: v240~486^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd5ad16cfba6ba9c607480efb428aa97dc2b875a;p=thirdparty%2Fsystemd.git 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. --- 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);