Commit e9cb7226 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix insignificant mem-leak

Spotted by: Coverity
parent 89aa01f4
......@@ -201,6 +201,7 @@ macro_expand(struct vtclog *vl, const char *text)
return (NULL);
}
VSB_printf(vsb, "%s", m);
free(m);
text = q + 1;
}
AZ(VSB_finish(vsb));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment