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);
|
const std::lock_guard<Mutex> protect(is.mutex);
|
||||||
|
|
||||||
bool done = false;
|
while (true) {
|
||||||
|
|
||||||
while (!done) {
|
|
||||||
unsigned char buffer[4096];
|
unsigned char buffer[4096];
|
||||||
const size_t nbytes = is.Read(buffer, sizeof(buffer));
|
const size_t nbytes = is.Read(buffer, sizeof(buffer));
|
||||||
if (nbytes == 0)
|
if (nbytes == 0)
|
||||||
done = true;
|
break;
|
||||||
|
|
||||||
if (done) {
|
handle.Parse(buffer, nbytes);
|
||||||
handle.CompleteParse();
|
|
||||||
} else
|
|
||||||
handle.Parse(buffer, nbytes);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
handle.CompleteParse();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user