mirror of
https://github.com/systemd/systemd.git
synced 2026-07-27 11:50:40 +00:00
Pretty trivial helper which wraps free() but returns NULL, so we can
simplify this:
free(foobar);
foobar = NULL;
to this:
foobar = mfree(foobar);