1
0
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:
Volker Lendecke 2023-08-02 18:39:20 +02:00 committed by Jeremy Allison
parent 688891f475
commit 6527211aef

View File

@ -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;