Commit 3ea36ba0 authored by Raymond Knopp's avatar Raymond Knopp

bugfix in use of sizeof in thread-pool.c

parent 50f30cfd
...@@ -167,9 +167,9 @@ void initFloatingCoresTpool(int nbThreads,tpool_t *pool, bool performanceMeas, c ...@@ -167,9 +167,9 @@ void initFloatingCoresTpool(int nbThreads,tpool_t *pool, bool performanceMeas, c
if (nbThreads) { if (nbThreads) {
strcpy(threads,"-1"); strcpy(threads,"-1");
for (int i=1; i < nbThreads; i++) 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); initNamedTpool(threads, pool, performanceMeas, name);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment