mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
check_snmp: Initialize size_t value to 0, not NULL
This commit is contained in:
parent
8230bbd4a4
commit
e8594f461d
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ char *privproto = NULL;
|
|||
char *authpasswd = NULL;
|
||||
char *privpasswd = NULL;
|
||||
char **oids = NULL;
|
||||
size_t oids_size = NULL;
|
||||
size_t oids_size = 0;
|
||||
char *label;
|
||||
char *units;
|
||||
char *port;
|
||||
|
|
|
|||
Loading…
Reference in a new issue