diff options
author | nao <naost3rn@gmail.com> | 2020-01-21 10:30:37 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-01-21 10:32:43 +0100 |
commit | dea17b519dc1d83265ca6aa9a484a2cf242db3b9 (patch) | |
tree | 5b4c59f72e6215e1bf7888fb16787f7a7ea6b842 /lib/urldata.h | |
parent | 1774dbd74c77cd6c728588c8a717903dd16003f3 (diff) | |
download | curl-dea17b519dc1d83265ca6aa9a484a2cf242db3b9.tar.gz |
http: move "oauth_bearer" from connectdata to Curl_easy
Fixes the bug where oauth_bearer gets deallocated when we re-use a
connection.
Closes #4824
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 3effb1626..f3358b3e2 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -906,7 +906,6 @@ struct connectdata { char *passwd; /* password string, allocated */ char *options; /* options string, allocated */ - char *oauth_bearer; /* bearer token for OAuth 2.0, allocated */ char *sasl_authzid; /* authorisation identity string, allocated */ int httpversion; /* the HTTP version*10 reported by the server */ |