aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/support
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-04-08 01:38:29 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-04-08 01:38:29 +0200
commitb29d8cfeb886e951dcbacc0f42f12624a2684086 (patch)
tree52196737d627b9b755ed3d93715b7681b2627b15 /src/core/lib/support
parentbdf80ac31f407d7886acd6a0fe2fb1ab4c43c6c9 (diff)
Last few mallocs / frees.
Diffstat (limited to 'src/core/lib/support')
-rw-r--r--src/core/lib/support/log_linux.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/support/log_linux.c b/src/core/lib/support/log_linux.c
index 6d4b63bbe0..ff3febb38e 100644
--- a/src/core/lib/support/log_linux.c
+++ b/src/core/lib/support/log_linux.c
@@ -68,6 +68,7 @@ void gpr_log(const char *file, int line, gpr_log_severity severity,
}
va_end(args);
gpr_log_message(file, line, severity, message);
+ /* message has been allocated by vasprintf above, and needs free */
free(message);
}