Possibly uninitialised variable says GCC

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@6847 4a71c877-e1ca-e34f-864e-861f7616d084
master
Dennis Schridde 2009-03-14 19:49:43 +00:00
parent 4dc0520846
commit 1199b1e03b
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@
utf_32_char UTF8DecodeChar(const char *utf8_char, const char **next_char)
{
utf_32_char decoded;
utf_32_char decoded = '\0';
*next_char = utf8_char;
ASSERT_START_OCTECT(*utf8_char);