From 7c588796fb97b7a6bebea38c82ece6d2f1fe94aa Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sat, 7 Dec 2013 19:05:38 +0100 Subject: [PATCH] satisfy st00pid unitialized checker --- webcit/tcp_sockets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/tcp_sockets.c b/webcit/tcp_sockets.c index 04c648a29..4a60fed49 100644 --- a/webcit/tcp_sockets.c +++ b/webcit/tcp_sockets.c @@ -554,7 +554,7 @@ void serv_read_binary_to_http(StrBuf *MimeType, size_t total_len, int is_static, size_t bytes_read = 0; int first = 1; int chunked = 0; - StrBuf *BufHeader; + StrBuf *BufHeader = NULL; StrBuf *Buf; Buf = NewStrBuf(); -- 2.30.2