On Wed, 17.04.13 16:12, [email protected] ([email protected]) wrote:

> -        char *root, *cgroup, *p, *cc;
> +        char _cleanup_free_ *root = NULL, *cgroup = NULL, *p = NULL, *cc = 
> NULL;

Hmm, can we agree on a common syntax for this?

I tend to put the "_cleanup_free_" before the type, and Zbigniew and
Harald after.

I kinda prefer putting it first, since it puts the emphasis on the
cleanup logic, which I think is a good thing, since that's really
important to grok the code. i.e. the cleanup stuff is not unessential
decoration, but really important, so putting it first sounds good to me.

            _cleanup_free_ char *s = NULL;
            char _cleanup_free_ char *t = NULL;

I much prefer the first syntax...

Opinions?

Patch looks good otherwise.

Lennart

-- 
Lennart Poettering - Red Hat, Inc.
_______________________________________________
systemd-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/systemd-devel

Reply via email to