diff options
author | Andrew Krieger <akrieger@fb.com> | 2017-03-03 16:17:24 -0800 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-03-04 21:37:03 +0100 |
commit | 7b1430c0b4d14043cf0c1cc350399b1b306f3e49 (patch) | |
tree | e50a1498760ae4ef3c110acd0e5cb74d9c139de4 /lib/gopher.c | |
parent | 658b9a200ae2b31dfe7ede957fb5aaa127386205 (diff) | |
download | curl-7b1430c0b4d14043cf0c1cc350399b1b306f3e49.tar.gz |
fix potential use of uninitialized variables
MSVC with LTCG detects this at warning level 4.
Closes #1304
Diffstat (limited to 'lib/gopher.c')
-rw-r--r-- | lib/gopher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gopher.c b/lib/gopher.c index 6b57d3519..e6d274648 100644 --- a/lib/gopher.c +++ b/lib/gopher.c @@ -78,7 +78,7 @@ static CURLcode gopher_do(struct connectdata *conn, bool *done) curl_off_t *bytecount = &data->req.bytecount; char *path = data->state.path; - char *sel; + char *sel = NULL; char *sel_org = NULL; ssize_t amount, k; size_t len; |