封顶libcurl在X个字符后返回

时间:2011-11-19 02:01:07

标签: c++ c libcurl

cURL检索到的大于5000个字符的页面似乎在我的应用程序中导致分段错误。

//Includes etc.
#include "mainheader.h"
using namespace std;
using namespace boost;

//Buffer is defined right after the includes
char buffer [5000];

//cURL result to buffer, which is declared above.
void function_pt(void *ptr, size_t size, size_t nmemb, void *stream)
{
    int n;
    n=sprintf(buffer,"%s", ptr, size, nmemb, stream);
}

//Function to check one URL
void checkurl(char* thisurl)
{
    //Start curl
    CURL *curl;
    CURLcode res;
    curl = curl_easy_init();

    if(curl)
    {
        curl_easy_setopt(curl, CURLOPT_URL, thisurl);
        curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, function_pt);
        res = curl_easy_perform(curl);
        curl_easy_cleanup(curl);
    }
}

我不是100%确定这是否是导致分段错误的原因,有可能任何包含多个换行符的返回都会导致分段错误(尚未能够测试)。但我假设缓冲区会在5000个字符后自动切断返回的数据,但我想这对我很天真。我怎样才能确定是这种情况?

1 个答案:

答案 0 :(得分:2)

您的sprintf行错了。您为格式字符串传递了太多参数。此外,您可以使用snprintf,它类似于sprintf但能够占用最大长度以防止溢出缓冲区。