Initialize pointer variable platform before use in get_num_of_asic (#12351)

- Why I did it
Pointer variable platform not initialized before use in get_num_of_asic of src/systemd-sonic-generator/systemd-sonic-generator.c. Then wild pointer will introduce undetermined exception when use in snprintf at line 545 .
Other pointers in this function like token will be assigned the value before use, and will not have such issue.

- How I did it
Initialized pointer platform to NULL when defined and before use.
This commit is contained in:
daxia16 2022-11-15 03:41:13 +08:00 committed by GitHub
parent fd078af4f2
commit 8f16ff1124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -516,7 +516,7 @@ int get_num_of_asic() {
FILE *fp;
char *line = NULL;
char* token;
char* platform;
char* platform = NULL;
char* saveptr;
size_t len = 0;
ssize_t nread;