Skip to content
  1. Mar 20, 2016
  2. Mar 19, 2016
  3. Mar 18, 2016
    • Steve Holme's avatar
      formdata.c: Fixed compilation warning · 7e312bdf
      Steve Holme authored
      formdata.c:390: warning: cast from pointer to integer of different size
      
      Introduced in commit ca5f9341 this happens because a char*, which is
      32-bits wide in 32-bit land, is being cast to a curl_off_t which is
      64-bits wide where 64-bit integers are supported by the compiler.
      
      This doesn't happen in 64-bit land as a pointer is the same size as a
      curl_off_t.
      
      This fix doesn't address the fact that a 64-bit value cannot be used
      for CURLFORM_CONTENTLEN when set in a form array and compiled on a
      32-bit platforms, it does at least suppress the compilation warning.
      7e312bdf
  4. Mar 17, 2016
  5. Mar 16, 2016
  6. Mar 15, 2016
  7. Mar 14, 2016
  8. Mar 13, 2016
  9. Mar 12, 2016
  10. Mar 11, 2016
  11. Mar 10, 2016
  12. Mar 08, 2016