Skip to content
  1. Jul 30, 2015
  2. Jul 29, 2015
  3. Jul 28, 2015
  4. Jul 26, 2015
  5. Jul 25, 2015
  6. Jul 24, 2015
    • Michael Kaufmann's avatar
      HTTP: ignore "Content-Encoding: compress" · c5d060ca
      Michael Kaufmann authored
      Currently, libcurl rejects responses with "Content-Encoding: compress"
      when CURLOPT_ACCEPT_ENCODING is set to "". I think that libcurl should
      treat the Content-Encoding "compress" the same as other
      Content-Encodings that it does not support, e.g. "bzip2". That means
      just ignoring it.
      c5d060ca
  7. Jul 23, 2015
    • Marcel Raad's avatar
      openssl: work around MSVC warning · 98835eed
      Marcel Raad authored
      MSVC 12 complains:
      
      lib\vtls\openssl.c(1554): warning C4701: potentially uninitialized local
      variable 'verstr' used It's a false positive, but as it's normally not,
      I have enabled warning-as-error for that warning.
      98835eed
    • Michał Fita's avatar
      configure: add --disable-rt option · cee21eb6
      Michał Fita authored
      This option disables any attempts in configure to create dependency on
      stuff requiring linking to librt.so and libpthread.so, in this case this
      means clock_gettime(CLOCK_MONOTONIC, &mt).
      
      We were in need to build curl which doesn't link libpthread.so to avoid
      the following bug:
      https://sourceware.org/bugzilla/show_bug.cgi?id=16628.
      cee21eb6
    • Kamil Dudka's avatar
      http2: verify success of strchr() in http2_send() · da650c1e
      Kamil Dudka authored
      Detected by Coverity.
      
      Error: NULL_RETURNS:
      lib/http2.c:1301: returned_null: "strchr" returns null (checked 103 out of 109 times).
      lib/http2.c:1301: var_assigned: Assigning: "hdbuf" = null return value from "strchr".
      lib/http2.c:1302: dereference: Incrementing a pointer which might be null: "hdbuf".
      1300|
      1301|     hdbuf = strchr(hdbuf, 0x0a);
      1302|->   ++hdbuf;
      1303|
      1304|     authority_idx = 0;
      da650c1e
  8. Jul 22, 2015
  9. Jul 21, 2015
  10. Jul 20, 2015
  11. Jul 18, 2015
  12. Jul 17, 2015