Unverified Commit a17e7721 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

metalink: fix error: ‘*’ in boolean context, suggest ‘&&’ instead

parent 050e3532
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -875,7 +875,7 @@ size_t metalink_write_cb(void *buffer, size_t sz, size_t nmemb,
   * it does not match then it fails with CURLE_WRITE_ERROR. So at this
   * point returning a value different from sz*nmemb indicates failure.
   */
  const size_t failure = (sz * nmemb) ? 0 : 1;
  const size_t failure = (sz && nmemb) ? 0 : 1;

  if(!config)
    return failure;