Commit aa49b454 authored by jan.koester's avatar jan.koester
Browse files

tes

parent a540312b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1232,7 +1232,8 @@ void libhtmlpp::HtmlPage::loadFile(libhtmlpp::HtmlElement &html,const char* path
        throw excp[HTMLException::Critical] << e.what();
    }

    while (fs.read(tmp, HTML_BLOCKSIZE)) {
    while (fs.good()) {
        fs.read(tmp,HTML_BLOCKSIZE);
        data.append(tmp,fs.gcount());
    }
    fs.close();