Commit 9e062580 authored by jan.koester's avatar jan.koester
Browse files

test

parent d3b0b6c2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -870,8 +870,8 @@ libhtmlpp::HtmlElement *libhtmlpp::HtmlPage::loadFile(const char* path){
    }

    while (fs.good()) {
        size_t rd= fs.readsome(tmp,HTML_BLOCKSIZE);
        data->append(tmp,rd);
        fs.read(tmp,HTML_BLOCKSIZE);
        data->append(tmp,fs.gcount());
    }
    fs.close();