Silence a warning which complains about using an uninitialized variable.
svn-id: r33169
This commit is contained in:
parent
e1c71dab99
commit
e09eb75ef7
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue