mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-13 18:50:01 -04:00
Fixed glibc error caused in utils_base.c due to uninitialized thresholds struct (spotted on ubundu 6.06 LTS).
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1711 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
c7d407faeb
commit
1ef19943e1
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ int main(int argc, char **argv){
|
|||
char *ptr;
|
||||
int data_val;
|
||||
int return_code=STATE_OK;
|
||||
thresholds *thresholds;
|
||||
thresholds *thresholds = NULL;
|
||||
|
||||
if(process_arguments(argc,argv)==ERROR)
|
||||
usage(_("Could not parse arguments"));
|
||||
|
|
|
|||
Loading…
Reference in a new issue