mirror of
https://github.com/curl/curl.git
synced 2026-07-24 14:27:16 +03:00
Curl_add_timecondition: skip superfluous varible assignment
Detected by cppcheck.
This commit is contained in:
parent
65db980106
commit
1752e9c088
1 changed files with 1 additions and 3 deletions
|
|
@ -1659,10 +1659,8 @@ CURLcode Curl_add_timecondition(struct SessionHandle *data,
|
|||
{
|
||||
const struct tm *tm;
|
||||
char *buf = data->state.buffer;
|
||||
CURLcode result = CURLE_OK;
|
||||
struct tm keeptime;
|
||||
|
||||
result = Curl_gmtime(data->set.timevalue, &keeptime);
|
||||
CURLcode result = Curl_gmtime(data->set.timevalue, &keeptime);
|
||||
if(result) {
|
||||
failf(data, "Invalid TIMEVALUE");
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue