summaryrefslogtreecommitdiffstats
path: root/common/state/backend.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/state/backend.c')
-rw-r--r--common/state/backend.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/state/backend.c b/common/state/backend.c
index 2f2e6dfd32..5235bb0283 100644
--- a/common/state/backend.c
+++ b/common/state/backend.c
@@ -164,7 +164,7 @@ int state_backend_init(struct state_backend *backend, struct device_d *dev,
if (ret)
goto out_free_format;
- backend->of_path = of_path;
+ backend->of_path = xstrdup(of_path);
return 0;
@@ -185,4 +185,5 @@ void state_backend_free(struct state_backend *backend)
state_storage_free(&backend->storage);
if (backend->format)
state_format_free(backend->format);
+ free(backend->of_path);
}