mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
Pretty trivial helper which wraps free() but returns NULL, so we can
simplify this:
free(foobar);
foobar = NULL;
to this:
foobar = mfree(foobar);