aboutsummaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-15 23:39:32 +0100
committerMax Kellermann <max@duempel.org>2013-01-15 23:39:32 +0100
commit452a30d7afeaf5ed641a1f9100349c8a5c32753b (patch)
tree1018405823eb91e8e5fc80a1cc371b5db81ff890 /src/input
parent49e79620fd12e08e40b56a46872ebcefdb75c123 (diff)
input/Curl: break loop when remaining length becomes 0
Fixes assertion failure (regression).
Diffstat (limited to 'src/input')
-rw-r--r--src/input/CurlInputPlugin.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/input/CurlInputPlugin.cxx b/src/input/CurlInputPlugin.cxx
index 1b852b90..29d8266c 100644
--- a/src/input/CurlInputPlugin.cxx
+++ b/src/input/CurlInputPlugin.cxx
@@ -776,6 +776,9 @@ read_from_buffer(IcyMetaDataParser &icy, std::list<CurlInputBuffer> &buffers,
buffers.pop_front();
break;
}
+
+ if (length == 0)
+ break;
}
chunk = icy.Meta(buffer.Begin(), length);
@@ -788,6 +791,9 @@ read_from_buffer(IcyMetaDataParser &icy, std::list<CurlInputBuffer> &buffers,
buffers.pop_front();
break;
}
+
+ if (length == 0)
+ break;
}
}