diff options
author | Robin Sonefors <robin.sonefors@op5.com> | 2013-01-29 14:08:44 (GMT) |
---|---|---|
committer | Robin Sonefors <robin.sonefors@op5.com> | 2013-01-29 14:30:04 (GMT) |
commit | a20611d4357c3c3ebe0a62776a1642e7904c1410 (patch) | |
tree | 60a320d4a521bb3de4d556b618da0f17d3d05c0e /plugins/check_snmp.c | |
parent | d87395ec3d4bec777ab92fc74c8370877171259f (diff) | |
download | monitoring-plugins-a20611d4357c3c3ebe0a62776a1642e7904c1410.tar.gz |
check_snmp: Close potential for using uninitialized memoryrefs/pull/37/head
This was reported by clang, and in order for it to understand attributes
properly, I had to modify the macro that checks for non-gcc compilers.
Signed-off-by: Robin Sonefors <robin.sonefors@op5.com>
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r-- | plugins/check_snmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 28354b0..c73562b 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -229,13 +229,14 @@ main (int argc, char **argv) | |||
229 | 229 | ||
230 | np_set_args(argc, argv); | 230 | np_set_args(argc, argv); |
231 | 231 | ||
232 | time(¤t_time); | ||
233 | |||
232 | if (process_arguments (argc, argv) == ERROR) | 234 | if (process_arguments (argc, argv) == ERROR) |
233 | usage4 (_("Could not parse arguments")); | 235 | usage4 (_("Could not parse arguments")); |
234 | 236 | ||
235 | if(calculate_rate) { | 237 | if(calculate_rate) { |
236 | if (!strcmp(label, "SNMP")) | 238 | if (!strcmp(label, "SNMP")) |
237 | label = strdup("SNMP RATE"); | 239 | label = strdup("SNMP RATE"); |
238 | time(¤t_time); | ||
239 | i=0; | 240 | i=0; |
240 | previous_state = np_state_read(); | 241 | previous_state = np_state_read(); |
241 | if(previous_state!=NULL) { | 242 | if(previous_state!=NULL) { |