From: Steve Holme Date: Fri, 8 Aug 2014 11:03:34 +0000 (+0100) Subject: tool_getparam.c: Fixed compilation warning X-Git-Tag: curl-7_38_0~125 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea864fb24d0b703f9571bf6231e0e3e945747fc5;p=thirdparty%2Fcurl.git tool_getparam.c: Fixed compilation warning warning: `orig_opt' might be used uninitialized in this function --- diff --git a/src/tool_getparam.c b/src/tool_getparam.c index e8414e9005..180878baba 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -1811,7 +1811,7 @@ ParameterError parse_args(struct GlobalConfig *config, int argc, { int i; bool stillflags; - char *orig_opt; + char *orig_opt = NULL; ParameterError result = PARAM_OK; struct OperationConfig *operation = config->first; @@ -1879,7 +1879,7 @@ ParameterError parse_args(struct GlobalConfig *config, int argc, result != PARAM_ENGINES_REQUESTED) { const char *reason = param2text(result); - if(!curlx_strequal(":", orig_opt)) + if(orig_opt && !curlx_strequal(":", orig_opt)) helpf(config->errors, "option %s: %s\n", orig_opt, reason); else helpf(config->errors, "%s\n", reason);