Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
561 B
Diff
23 lines
561 B
Diff
diff --git a/daxctl/device.c b/daxctl/device.c
|
|
index e3993b1..0b2f20d 100644
|
|
--- a/daxctl/device.c
|
|
+++ b/daxctl/device.c
|
|
@@ -23,6 +23,8 @@
|
|
#include "filter.h"
|
|
#include "json.h"
|
|
|
|
+#include <libgen.h>
|
|
+
|
|
static struct {
|
|
const char *dev;
|
|
const char *mode;
|
|
@@ -366,7 +368,7 @@ static const char *parse_device_options(int argc, const char **argv,
|
|
|
|
argc = parse_options(argc, argv, options, u, 0);
|
|
if (argc > 0)
|
|
- device = basename(argv[0]);
|
|
+ device = basename(strdup(argv[0]));
|
|
|
|
/* Handle action-agnostic non-option arguments */
|
|
if (argc == 0 &&
|