db/upnp: check offset<total at end of loop

This commit is contained in:
Max Kellermann 2014-01-22 21:03:45 +01:00
parent fa67a4e956
commit 6c41e8f63f

View File

@ -114,20 +114,15 @@ ContentDirectoryService::readDir(UpnpClient_Handle handle,
UPnPDirContent &dirbuf, UPnPDirContent &dirbuf,
Error &error) Error &error)
{ {
unsigned offset = 0; unsigned offset = 0, total = -1, count;
unsigned total = 1000;// Updated on first read.
while (offset < total) { do {
unsigned count;
if (!readDirSlice(handle, objectId, offset, m_rdreqcnt, dirbuf, if (!readDirSlice(handle, objectId, offset, m_rdreqcnt, dirbuf,
count, total, error)) count, total, error))
return false; return false;
if (count == 0)
return true;
offset += count; offset += count;
} } while (count > 0 && offset < total);
return true; return true;
} }
@ -139,10 +134,9 @@ ContentDirectoryService::search(UpnpClient_Handle hdl,
UPnPDirContent &dirbuf, UPnPDirContent &dirbuf,
Error &error) Error &error)
{ {
unsigned offset = 0; unsigned offset = 0, total = -1, count;
unsigned total = 1000;// Updated on first read.
while (offset < total) { do {
char ofbuf[100]; char ofbuf[100];
sprintf(ofbuf, "%d", offset); sprintf(ofbuf, "%d", offset);
@ -173,7 +167,7 @@ ContentDirectoryService::search(UpnpClient_Handle hdl,
const char *value = const char *value =
ixmlwrap::getFirstElementValue(response, "NumberReturned"); ixmlwrap::getFirstElementValue(response, "NumberReturned");
const unsigned count = value != nullptr count = value != nullptr
? ParseUnsigned(value) ? ParseUnsigned(value)
: 0; : 0;
@ -187,10 +181,7 @@ ContentDirectoryService::search(UpnpClient_Handle hdl,
ixmlDocument_free(response); ixmlDocument_free(response);
if (!success) if (!success)
return false; return false;
} while (count > 0 && offset < total);
if (count == 0)
break;
}
return true; return true;
} }