check_snmp: Initialize size_t value to 0, not NULL

This commit is contained in:
Holger Weiss 2013-09-05 00:19:36 +02:00
parent 8230bbd4a4
commit e8594f461d

View file

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