** from outside of nested loops further down below.
*/
- /* Parse .curlrc if necessary */
- if((argc == 1) || (!curlx_strequal(argv[1], "-q"))) {
- parseconfig(NULL, config); /* ignore possible failure */
-
- /* If we had no arguments then make sure a url was specified in .curlrc */
- if((argc < 2) && (!config->url_list)) {
- helpf(config->errors, NULL);
- res = CURLE_FAILED_INIT;
- goto quit_curl;
- }
- }
-
/* Parse the command line arguments */
res = parse_args(config, argc, argv);
if(res) {
if(result)
return result;
- /* Perform the main operation */
- result = operate_do(config, argc, argv);
+ /* Parse .curlrc if necessary */
+ if((argc == 1) || (!curlx_strequal(argv[1], "-q"))) {
+ parseconfig(NULL, config); /* ignore possible failure */
+
+ /* If we had no arguments then make sure a url was specified in .curlrc */
+ if((argc < 2) && (!config->url_list)) {
+ helpf(config->errors, NULL);
+ result = CURLE_FAILED_INIT;
+ }
+ }
+
+ if(!result)
+ /* Perform the main operation */
+ result = operate_do(config, argc, argv);
/* Perform the cleanup */
operate_free(config);