diff options
Diffstat (limited to 'indra/llcommon/llstreamtools.cpp')
-rw-r--r-- | indra/llcommon/llstreamtools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstreamtools.cpp b/indra/llcommon/llstreamtools.cpp index f9038afedc..a92f1c9388 100644 --- a/indra/llcommon/llstreamtools.cpp +++ b/indra/llcommon/llstreamtools.cpp @@ -534,7 +534,7 @@ std::istream& fullread(std::istream& str, char *buf, std::streamsize requested) std::istream& operator>>(std::istream& str, const char *tocheck) { - char c; + char c = '\0'; const char *p; p = tocheck; while (*p && !str.bad()) |