Changeset 200687 in webkit


Ignore:
Timestamp:
May 11, 2016 9:18:41 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[curl] curl_easy_setopt(CURLOPT_CONNECT_ONLY) should take a long parameter
https://bugs.webkit.org/show_bug.cgi?id=157562

Patch by Fujii Hironori <Fujii Hironori> on 2016-05-11
Reviewed by Darin Adler.

The third argument of a calling curl_easy_setopt is missing.

  • platform/network/curl/SocketStreamHandleCurl.cpp:

(WebCore::SocketStreamHandle::startThread): Give the third
argument of curl_easy_setopt.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r200686 r200687  
     12016-05-11  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [curl] curl_easy_setopt(CURLOPT_CONNECT_ONLY) should take a long parameter
     4        https://bugs.webkit.org/show_bug.cgi?id=157562
     5
     6        Reviewed by Darin Adler.
     7
     8        The third argument of a calling curl_easy_setopt is missing.
     9
     10        * platform/network/curl/SocketStreamHandleCurl.cpp:
     11        (WebCore::SocketStreamHandle::startThread): Give the third
     12        argument of curl_easy_setopt.
     13
    1142016-05-11  Pranjal Jumde  <pjumde@apple.com>
    215
  • trunk/Source/WebCore/platform/network/curl/SocketStreamHandleCurl.cpp

    r194496 r200687  
    203203        curl_easy_setopt(curlHandle, CURLOPT_URL, m_url.host().utf8().data());
    204204        curl_easy_setopt(curlHandle, CURLOPT_PORT, m_url.port());
    205         curl_easy_setopt(curlHandle, CURLOPT_CONNECT_ONLY);
     205        curl_easy_setopt(curlHandle, CURLOPT_CONNECT_ONLY, 1L);
    206206
    207207        // Connect to host
Note: See TracChangeset for help on using the changeset viewer.