From dc185ee2c26f389e45000dd42fce1f8a7062d743 Mon Sep 17 00:00:00 2001 From: suzuki toshiya Date: Wed, 15 Jun 2011 02:36:52 +0900 Subject: [PATCH] Fix misleading comment, s/buffer allocator/FT_NEW() families/g --- ChangeLog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 05d98c670..d7a294bfd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,7 +2,7 @@ [base] Fix g++4.6 compiler warnings in src/base/*.c. - Passing uninitialized pointer to the buffer allocator is + Passing uninitialized pointer to FT_NEW() families is not problematic theoretically (as far as the returned pointer is checked before writing), but g++4.6 dislikes it and warns by -Wuninitialized. Initialize them by NULL.