projects
/
systemd
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a1862b
)
home: add missing variable initialization
author
Yu Watanabe
<watanabe.yu+github@gmail.com>
Fri, 31 Jan 2020 14:04:38 +0000
(23:04 +0900)
committer
Yu Watanabe
<watanabe.yu+github@gmail.com>
Fri, 31 Jan 2020 14:04:43 +0000
(23:04 +0900)
Fixes CID#
1415126
.
src/home/homed-manager.c
patch
|
blob
|
history
diff --git
a/src/home/homed-manager.c
b/src/home/homed-manager.c
index f4fec0e7c93d951f77402fbc3f098344812b2955..bbe227ce709bad4ca991986828f07efa4a55f2a9 100644
(file)
--- a/
src/home/homed-manager.c
+++ b/
src/home/homed-manager.c
@@
-314,7
+314,7
@@
static int manager_add_home_by_record(
const char *fname) {
_cleanup_(json_variant_unrefp) JsonVariant *v = NULL;
- _cleanup_(user_record_unrefp) UserRecord *hr;
+ _cleanup_(user_record_unrefp) UserRecord *hr
= NULL
;
unsigned line, column;
int r, is_signed;
Home *h;