Loading src/tool_easysrc.c +3 −3 Original line number Diff line number Diff line Loading @@ -140,7 +140,7 @@ CURLcode easysrc_perform(void) const char *c; CHKRET(easysrc_add(&easysrc_code, "")); /* Preamble comment */ for(i=0; ((c = srchard[i]) != '\0'); i++) for(i=0; ((c = srchard[i]) != NULL); i++) CHKRET(easysrc_add(&easysrc_code, c)); /* Each unconverted option */ for(ptr=easysrc_toohard; ptr; ptr = ptr->next) Loading Loading @@ -185,7 +185,7 @@ void dumpeasysrc(struct Configurable *config) int i; const char *c; for(i=0; ((c = srchead[i]) != '\0'); i++) for(i=0; ((c = srchead[i]) != NULL); i++) fprintf(out, "%s\n", c); /* Declare variables used for complex setopt values */ Loading Loading @@ -213,7 +213,7 @@ void dumpeasysrc(struct Configurable *config) for(ptr=easysrc_clean; ptr; ptr = ptr->next) fprintf(out, " %s\n", ptr->data); for(i=0; ((c = srcend[i]) != '\0'); i++) for(i=0; ((c = srcend[i]) != NULL); i++) fprintf(out, "%s\n", c); if(fopened) Loading Loading
src/tool_easysrc.c +3 −3 Original line number Diff line number Diff line Loading @@ -140,7 +140,7 @@ CURLcode easysrc_perform(void) const char *c; CHKRET(easysrc_add(&easysrc_code, "")); /* Preamble comment */ for(i=0; ((c = srchard[i]) != '\0'); i++) for(i=0; ((c = srchard[i]) != NULL); i++) CHKRET(easysrc_add(&easysrc_code, c)); /* Each unconverted option */ for(ptr=easysrc_toohard; ptr; ptr = ptr->next) Loading Loading @@ -185,7 +185,7 @@ void dumpeasysrc(struct Configurable *config) int i; const char *c; for(i=0; ((c = srchead[i]) != '\0'); i++) for(i=0; ((c = srchead[i]) != NULL); i++) fprintf(out, "%s\n", c); /* Declare variables used for complex setopt values */ Loading Loading @@ -213,7 +213,7 @@ void dumpeasysrc(struct Configurable *config) for(ptr=easysrc_clean; ptr; ptr = ptr->next) fprintf(out, " %s\n", ptr->data); for(i=0; ((c = srcend[i]) != '\0'); i++) for(i=0; ((c = srcend[i]) != NULL); i++) fprintf(out, "%s\n", c); if(fopened) Loading