summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2014-06-17 23:21:31 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2014-06-17 23:21:31 (GMT)
commite2b816986926e91227fc151af99bcf6dd5f68e74 (patch)
tree266c12ae28dd600266320f01ef5e26d8128d7d10
parent95ed0a996c84d8df0485b2ffbadf6e92d3fef80f (diff)
downloadmonitoring-plugins-e2b8169.tar.gz
lib/parse_ini.c: Don't cast malloc(3) result
There's no need to cast malloc(3)'s return value.
-rw-r--r--lib/parse_ini.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parse_ini.c b/lib/parse_ini.c
index 2e42df7..51ad2c1 100644
--- a/lib/parse_ini.c
+++ b/lib/parse_ini.c
@@ -274,11 +274,11 @@ static int add_option(FILE *f, np_arg_list **optlst){
274 /* okay, now we have all the info we need, so we create a new np_arg_list 274 /* okay, now we have all the info we need, so we create a new np_arg_list
275 * element and set the argument... 275 * element and set the argument...
276 */ 276 */
277 optnew=(np_arg_list *)malloc(sizeof(np_arg_list)); 277 optnew=malloc(sizeof(np_arg_list));
278 optnew->next=NULL; 278 optnew->next=NULL;
279 279
280 read_pos=0; 280 read_pos=0;
281 optnew->arg=(char *)malloc(cfg_len+1); 281 optnew->arg=malloc(cfg_len+1);
282 /* 1-character params needs only one dash */ 282 /* 1-character params needs only one dash */
283 if(opt_len==1) { 283 if(opt_len==1) {
284 strncpy(&optnew->arg[read_pos], "-", 1); 284 strncpy(&optnew->arg[read_pos], "-", 1);