diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-02 16:51:25 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-02 16:51:25 +0000 |
commit | 234481163fc3caf0cb8b14f601f0f9f1458f97f5 (patch) | |
tree | e8debce30a2722f5f4dc5e33faf54c9915dd022f /plugins/popen.c | |
parent | df1bd0c89ff63de64ee630e0025389651947020c (diff) | |
download | monitoring-plugins-234481163fc3caf0cb8b14f601f0f9f1458f97f5.tar.gz |
More internationalization work
new usage4 function to permit localisation of think like check_ssh: xxxxx
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@979 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/popen.c')
-rw-r--r-- | plugins/popen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/popen.c b/plugins/popen.c index f05fe974..94ad583f 100644 --- a/plugins/popen.c +++ b/plugins/popen.c @@ -112,6 +112,7 @@ spopen (const char *cmdstring) /* there cannot be more args than characters */ argc = strlen (cmdstring) + 1; /* add 1 for NULL termination */ argv = malloc (sizeof(char*)*argc); + if (argv == NULL) { printf ("Could not malloc argv array in popen()\n"); return NULL; |