*** empty log message ***

This commit is contained in:
Mike Goslin 2000-12-09 04:25:46 +00:00
parent 4ea223eae8
commit 9590690313

View File

@ -722,6 +722,11 @@ parse_header(DownloadStatus &status) {
downloader_cat.error()
<< "Downloader::parse_header() - No newlines in buffer!" << endl;
return false;
} else if (p == 0 && nl == p) {
downloader_cat.error()
<< "Downloader::parse_header() - Buffer begins with newline!"
<< endl;
return false;
}
string component = bufstr.substr(p, nl - p);