Silence a warning which complains about using an uninitialized variable.

svn-id: r33169
This commit is contained in:
Kari Salminen 2008-07-21 11:33:30 +00:00
parent e1c71dab99
commit e09eb75ef7

View file

@ -152,7 +152,7 @@ char *SeekableReadStream::readLine_NEW(char *buf, size_t bufSize) {
assert(buf != 0 && bufSize > 1);
char *p = buf;
size_t len = 0;
char c;
char c = 0;
// If end-of-file occurs before any characters are read, return NULL
// and the buffer contents remain unchanged.