You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
574 B

  1. Index: libmicrohttpd-0.9.50/src/microhttpd/mhd_str.c
  2. ===================================================================
  3. --- libmicrohttpd-0.9.50.orig/src/microhttpd/mhd_str.c 2016-05-02 14:22:44.000000000 +0200
  4. +++ libmicrohttpd-0.9.50/src/microhttpd/mhd_str.c 2016-07-15 11:06:39.896282700 +0200
  5. @@ -271,7 +271,8 @@
  6. int
  7. MHD_str_equal_caseless_n_ (const char * const str1, const char * const str2, size_t maxlen)
  8. {
  9. - for (size_t i = 0; i < maxlen; ++i)
  10. + size_t i;
  11. + for (i = 0; i < maxlen; ++i)
  12. {
  13. const char c1 = str1[i];
  14. const char c2 = str2[i];