diff options
author | Daniel Mack <daniel@zonque.org> | 2015-07-29 20:25:57 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-07-30 13:09:01 +0200 |
commit | 2fc09a9cdd1ad25bc7c53a23d5301eb952e1ce3d (patch) | |
tree | c662c5bf209dae93822ac07a831882a7ba4ba0b2 /src/run/run.c | |
parent | 5f17089ac1e86c25806d3f066243561360efd2ca (diff) |
tree-wide: use free_and_strdup()
Use free_and_strdup() where appropriate and replace equivalent,
open-coded versions.
Diffstat (limited to 'src/run/run.c')
-rw-r--r-- | src/run/run.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/run/run.c b/src/run/run.c index 148854a9b5..3dd97022de 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -1129,13 +1129,9 @@ int main(int argc, char* argv[]) { } if (arg_unit && isempty(description)) { - free(description); - description = strdup(arg_unit); - - if (!description) { - r = log_oom(); + r = free_and_strdup(&description, arg_unit); + if (r < 0) goto finish; - } } arg_description = description; |