Commit dc3e7df1 authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning

parent 1171bc5c
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -634,7 +634,7 @@ CURL *curl_easy_duphandle(CURL *incurl)
  if(NULL == outcurl)
    return NULL; /* failure */

  do {
  for(;;) {

    /*
     * We setup a few buffers we need. We should probably make them
@@ -720,8 +720,9 @@ CURL *curl_easy_duphandle(CURL *incurl)
    outcurl->magic = CURLEASY_MAGIC_NUMBER;

    fail = FALSE; /* we reach this point and thus we are OK */
    break;

  } while(0);
  }

  if(fail) {
    if(outcurl) {
+2 −2
Original line number Diff line number Diff line
@@ -1647,14 +1647,14 @@ int main(int argc, argv_item_t argv[])

  Curl_FormInit(&formread, form);

  do {
  for(;;) {
    nread = Curl_FormReader(buffer, 1, sizeof(buffer),
                            (FILE *)&formread);

    if(nread < 1)
      break;
    fwrite(buffer, nread, 1, stdout);
  } while(1);
  }

  fprintf(stdout, "size: ");
  fprintf(stdout, "%" FORMAT_OFF_T, size);
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ static CURLcode handshake(struct connectdata *conn,
  int rc;
  int what;

  while(1) {
  for(;;) {
    /* check allowed time left */
    timeout_ms = Curl_timeleft(conn, NULL, duringconnect);

+3 −3
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ Curl_HMAC_init(const HMAC_params * hashparams,

  /* Create HMAC context. */
  i = sizeof *ctxt + 2 * hashparams->hmac_ctxtsize + hashparams->hmac_resultlen;
  ctxt = (HMAC_context *) malloc(i);
  ctxt = malloc(i);

  if(!ctxt)
    return ctxt;
@@ -85,9 +85,9 @@ Curl_HMAC_init(const HMAC_params * hashparams,
  (*hashparams->hmac_hinit)(ctxt->hmac_hashctxt2);

  for (i = 0; i < keylen; i++) {
    b = *key ^ hmac_ipad;
    b = (unsigned char)(*key ^ hmac_ipad);
    (*hashparams->hmac_hupdate)(ctxt->hmac_hashctxt1, &b, 1);
    b = *key++ ^ hmac_opad;
    b = (unsigned char)(*key++ ^ hmac_opad);
    (*hashparams->hmac_hupdate)(ctxt->hmac_hashctxt2, &b, 1);
  }

+1 −1
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ CURLcode Curl_wait_for_resolv(struct connectdata *conn,
    timeout = CURL_TIMEOUT_RESOLVE * 1000; /* default name resolve timeout */

  /* Wait for the name resolve query to complete. */
  while(1) {
  for(;;) {
    struct timeval *tvp, tv, store;
    long timediff;
    int itimeout;
Loading