diff --git a/common/utils/threadPool/thread-pool.c b/common/utils/threadPool/thread-pool.c index 75252a9143c9db38ff9520ac1d4244c928c6ec5a..3cd18fab0292434846a6f36b8253019b1aaa8388 100644 --- a/common/utils/threadPool/thread-pool.c +++ b/common/utils/threadPool/thread-pool.c @@ -167,9 +167,9 @@ void initFloatingCoresTpool(int nbThreads,tpool_t *pool, bool performanceMeas, c if (nbThreads) { strcpy(threads,"-1"); for (int i=1; i < nbThreads; i++) - strncat(threads,",-1", sizeof(threads-1)); + strncat(threads,",-1", sizeof(threads)-1); } - threads[sizeof(threads-1)]=0; + threads[sizeof(threads)-1]=0; initNamedTpool(threads, pool, performanceMeas, name); }