lib/yajl/ParseInputStream: eliminate variable "done"
This commit is contained in:
parent
26b1573cbe
commit
5913994169
@ -27,17 +27,14 @@ Yajl::ParseInputStream(Handle &handle, InputStream &is)
|
||||
{
|
||||
const std::lock_guard<Mutex> protect(is.mutex);
|
||||
|
||||
bool done = false;
|
||||
|
||||
while (!done) {
|
||||
while (true) {
|
||||
unsigned char buffer[4096];
|
||||
const size_t nbytes = is.Read(buffer, sizeof(buffer));
|
||||
if (nbytes == 0)
|
||||
done = true;
|
||||
break;
|
||||
|
||||
if (done) {
|
||||
handle.CompleteParse();
|
||||
} else
|
||||
handle.Parse(buffer, nbytes);
|
||||
handle.Parse(buffer, nbytes);
|
||||
}
|
||||
|
||||
handle.CompleteParse();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user