X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_config_cores.c;h=94657459f225ed5b83436200cee57b24ee9347b5;hb=ce2eb567629eb21d650d5c27fefe607837c061fd;hp=9d869b98d098ea8dac55d1658fa027edbfbcc16f;hpb=0a600b591a897e0b7cc2097098ed3b014fb9eec8;p=collectd.git diff --git a/src/utils_config_cores.c b/src/utils_config_cores.c index 9d869b98..94657459 100644 --- a/src/utils_config_cores.c +++ b/src/utils_config_cores.c @@ -1,7 +1,7 @@ /** * collectd - src/utils_config_cores.c * - * Copyright(c) 2017 Intel Corporation. All rights reserved. + * Copyright(c) 2018 Intel Corporation. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -163,7 +163,7 @@ static int check_core_grouping(char *out, const char *in, size_t out_size, ERROR(UTIL_NAME ": Missing closing bracket ] in option %s.", in); return -EINVAL; } - if ((end - start) >= out_size) { + if ((size_t)(end - start) >= out_size) { ERROR(UTIL_NAME ": Out buffer is too small."); return -EINVAL; }