From: Yannick Brosseau Date: Tue, 22 Feb 2011 23:30:30 +0000 (+0100) Subject: Initialize _res_header variable to zero before use in process_client_cmd X-Git-Tag: v0.12~30 X-Git-Url: http://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=eb52c24a03c9995d989356c0ae05730ea8da9ce7 Initialize _res_header variable to zero before use in process_client_cmd This use of a non-initialized variable was detected by the valgrind test. Signed-off-by: Yannick Brosseau Acked-by: Nils Carlson --- diff --git a/libustconsumer/libustconsumer.c b/libustconsumer/libustconsumer.c index 25c84ce..c51b106 100644 --- a/libustconsumer/libustconsumer.c +++ b/libustconsumer/libustconsumer.c @@ -621,7 +621,7 @@ static void process_client_cmd(int sock, struct ustcomm_header *req_header, char *recvbuf, struct ustconsumer_instance *instance) { int result; - struct ustcomm_header _res_header; + struct ustcomm_header _res_header = {0}; struct ustcomm_header *res_header = &_res_header; struct ustcomm_buffer_info *buf_inf;