mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
smbstatus: Fix CID 1507865 Uninitialized pointer read
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
688891f475
commit
6527211aef
@ -1104,7 +1104,9 @@ int print_brl_json(struct traverse_state *state,
|
||||
struct json_object file_json = {
|
||||
.valid = false,
|
||||
};
|
||||
struct json_object brl_json;
|
||||
struct json_object brl_json = {
|
||||
.valid = false,
|
||||
};
|
||||
int result = 0;
|
||||
char *key;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user