libcurl,CURLOPT_POSTFIELDS的内容变乱码或少一字节

来源:互联网 发布:nginx root 和alias 编辑:程序博客网 时间:2024/05/02 00:19

今天写了一段代码调用libcurl库的,post的数据都会变成乱码,或者少一字节后来发现实变量有效范围的问题. 


错误代码:

//......if( NULL!=pszHttpBody ){const std::string strPostData = pszHttpBody;if( strPostData.size() ){ErrCode = curl_easy_setopt( m_curl, CURLOPT_POSTFIELDSIZE, strPostData.size() );ErrCode = curl_easy_setopt( m_curl, CURLOPT_POSTFIELDS, strPostData.c_str() );}}//......ErrCode = curl_easy_perform( m_curl );

正确代码:

//......std::string strPostData;if( NULL!=pszHttpBody ){strPostData = pszHttpBody;if( strPostData.size() ){ErrCode = curl_easy_setopt( m_curl, CURLOPT_POSTFIELDSIZE, strPostData.size() );ErrCode = curl_easy_setopt( m_curl, CURLOPT_POSTFIELDS, strPostData.c_str() );}}//......ErrCode = curl_easy_perform( m_curl );

问题出在变量strPostData,在错误代码中,if结束变量就释放了CURLOPT_POSTFIELDS指向了一个野指针.  错误很低级,因为使用中从来没思考过curl_easy_setopt保存的是指针还是值.

0 0