diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-01-20 22:15:15 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-01-20 22:15:15 +0000 |
commit | db550f5f805f7627d5929be1203869df0a21074f (patch) | |
tree | 5b0d03401d89f4e37d9ec724a40b6fbf84b5dd45 /src/pugixml.cpp | |
parent | 97316264895a7b28023fb769bd29ca4da2fd484a (diff) |
Fixed several code analysis warnings
git-svn-id: http://pugixml.googlecode.com/svn/trunk@239 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.cpp')
-rw-r--r-- | src/pugixml.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.cpp b/src/pugixml.cpp index 0a50497..33bd910 100644 --- a/src/pugixml.cpp +++ b/src/pugixml.cpp @@ -3129,7 +3129,7 @@ namespace pugi for (; *str;)
{
- unsigned int ch;
+ unsigned int ch = 0;
str = strutf8_utf16(str, ch);
result += (wchar_t)ch;
}
|