From: Adam Dickmeiss Date: Wed, 16 Dec 2009 14:17:15 +0000 (+0100) Subject: http_file: fix fread call (make fetch work again) X-Git-Tag: v1.0.23~7 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=d175195e24b16f1fc84750ed54b0e7b2709dee9a;p=metaproxy-moved-to-github.git http_file: fix fread call (make fetch work again) --- diff --git a/src/filter_http_file.cpp b/src/filter_http_file.cpp index 00fab9e..cf46974 100644 --- a/src/filter_http_file.cpp +++ b/src/filter_http_file.cpp @@ -158,7 +158,7 @@ void yf::HttpFile::Rep::fetch_file(mp::Session &session, Z_HTTP_Response *hres = gdu->u.HTTP_Response; hres->content_len = sz; hres->content_buf = (char*) odr_malloc(o, hres->content_len); - if (fread(hres->content_buf, 1, hres->content_len, f) != 1) + if (fread(hres->content_buf, hres->content_len, 1, f) != 1) { fclose(f); Z_GDU *gdu = o.create_HTTP_Response(session, req, 500);