diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-03-23 11:01:10 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-03-23 11:04:15 +0000 |
commit | 3ebfaf6a0399b6adeb7def7c322586c449a72af4 (patch) | |
tree | 7ea15243e274378d97fe333eea1ec219ea88e1c5 /src | |
parent | ed02f0abcaddb4128fca028054ab9ad64240c70a (diff) | |
download | curl-3ebfaf6a0399b6adeb7def7c322586c449a72af4.tar.gz |
tool_operate: Fixed uninitialised variable under some error situations
For example when a URL is not specified or the headers file fails to
open.
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_operate.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 689f769cb..1b7539459 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -205,8 +205,9 @@ static CURLcode operate_do(struct GlobalConfig *global, int res = 0; unsigned long li; - bool orig_noprogress; - bool orig_isatty; + /* Save the values of noprogress and isatty to restore them later on */ + bool orig_noprogress = global->noprogress; + bool orig_isatty = global->isatty; errorbuffer[0] = '\0'; @@ -336,10 +337,6 @@ static CURLcode operate_do(struct GlobalConfig *global, } } - /* save the values of noprogress and isatty to restore them later on */ - orig_noprogress = global->noprogress; - orig_isatty = global->isatty; - /* ** Nested loops start here. */ |