1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00

libdaemon-server: Fix a memory leak in daemon_log_multi.

This commit is contained in:
Petr Rockai 2012-10-08 17:11:43 +02:00
parent 7a64fff948
commit cc9c02fe68

View File

@ -98,6 +98,7 @@ void daemon_log_multi(log_state *s, int type, const char *prefix, const char *ms
_log_line(pos, &b);
pos = next ? next + 1 : 0;
}
dm_free(buf);
}
void daemon_log_enable(log_state *s, int outlet, int type, int enable)