summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys-utils/chcpu.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys-utils/chcpu.c b/sys-utils/chcpu.c
index 36c47affd..4060a4ca4 100644
--- a/sys-utils/chcpu.c
+++ b/sys-utils/chcpu.c
@@ -262,7 +262,7 @@ static void __attribute__((__noreturn__)) usage(void)
int main(int argc, char *argv[])
{
struct path_cxt *sys = NULL; /* _PATH_SYS_CPU handler */
- cpu_set_t *cpu_set;
+ cpu_set_t *cpu_set = NULL;
size_t setsize;
int cmd = -1;
int c, rc;
@@ -301,12 +301,13 @@ int main(int argc, char *argv[])
if (ul_path_access(sys, F_OK, "online") == 0)
ul_path_readf_cpulist(sys, &cpu_set, maxcpus, "online");
-
- setsize = CPU_ALLOC_SIZE(maxcpus);
- cpu_set = CPU_ALLOC(maxcpus);
+ else
+ cpu_set = CPU_ALLOC(maxcpus);
if (!cpu_set)
err(EXIT_FAILURE, _("cpuset_alloc failed"));
+ setsize = CPU_ALLOC_SIZE(maxcpus);
+
while ((c = getopt_long(argc, argv, "c:d:e:g:hp:rV", longopts, NULL)) != -1) {
err_exclusive_options(c, longopts, excl, excl_st);