This doesn't change anything for real uses, because we'd initialize the
variable to NULL for _cleanup_ anyway, but let's follow our general pattern
of always setting the output on "success". (Even if that success is an empty
answer here.)
* installation. */
static int parse_os_release_specifier(const char *root, const char *id, char **ret) {
+ char *v = NULL;
int r;
assert(ret);
+ r = parse_os_release(root, id, &v);
+ if (r >= 0)
+ /* parse_os_release() calls parse_env_file() which only sets the return value for
+ * entries found. Let's make sure we set the return value in all cases. */
+ *ret = v;
+
/* Translate error for missing os-release file to EUNATCH. */
- r = parse_os_release(root, id, ret);
return r == -ENOENT ? -EUNATCH : r;
}