Merge pull request #433 from cherti/initialization
Initialize fields with zero bytes in wireless module
This commit is contained in:
commit
3f27399d73
@ -554,13 +554,13 @@ void print_wireless_info(yajl_gen json_gen, char *buffer, const char *interface,
|
||||
}
|
||||
}
|
||||
|
||||
char string_quality[STRING_SIZE];
|
||||
char string_signal[STRING_SIZE];
|
||||
char string_noise[STRING_SIZE];
|
||||
char string_essid[STRING_SIZE];
|
||||
char string_frequency[STRING_SIZE];
|
||||
char string_ip[STRING_SIZE];
|
||||
char string_bitrate[STRING_SIZE];
|
||||
char string_quality[STRING_SIZE] = {'\0'};
|
||||
char string_signal[STRING_SIZE] = {'\0'};
|
||||
char string_noise[STRING_SIZE] = {'\0'};
|
||||
char string_essid[STRING_SIZE] = {'\0'};
|
||||
char string_frequency[STRING_SIZE] = {'\0'};
|
||||
char string_ip[STRING_SIZE] = {'\0'};
|
||||
char string_bitrate[STRING_SIZE] = {'\0'};
|
||||
|
||||
if (info.flags & WIRELESS_INFO_FLAG_HAS_QUALITY) {
|
||||
if (info.quality_max)
|
||||
|
Loading…
Reference in New Issue
Block a user