From: Yu Watanabe Date: Thu, 25 Nov 2021 15:09:30 +0000 (+0900) Subject: homework: drop unnecessary initialization X-Git-Tag: v250-rc1~148^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47398ea70531fce95ca084e8e023e69ea24dc074;p=thirdparty%2Fsystemd.git homework: drop unnecessary initialization --- diff --git a/src/home/homework-password-cache.c b/src/home/homework-password-cache.c index c1606c5f5f1..1133ab24b82 100644 --- a/src/home/homework-password-cache.c +++ b/src/home/homework-password-cache.c @@ -16,7 +16,7 @@ void password_cache_free(PasswordCache *cache) { void password_cache_load_keyring(UserRecord *h, PasswordCache *cache) { _cleanup_(erase_and_freep) void *p = NULL; _cleanup_free_ char *name = NULL; - char **strv = NULL; + char **strv; key_serial_t serial; size_t sz; int r;